diff options
Diffstat (limited to '')
-rw-r--r-- | src/b_export.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/b_export.h b/src/b_export.h index be703c2..2634349 100644 --- a/src/b_export.h +++ b/src/b_export.h @@ -13,8 +13,16 @@ #ifndef B_EXPORT_H #define B_EXPORT_H +#include <libft.h> +#include <stdint.h> + #include "s_struct.h" +t_bool check_valid_identifier(const char arg[]); +t_bool check_equals(const char *arg); +void b_add_to_env_from_globals(const char varname[], + const char var[], + t_msh *msh); uint8_t b_export(char *args[], t_msh *msh); #endif |