/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* u_utils.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rbousset +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/14 17:19:27 by rbousset #+# #+# */ /* Updated: 2020/02/14 17:19:29 by rbousset ### ########lyon.fr */ /* */ /* ************************************************************************** */ #ifndef FT_U_UTILS_H # define FT_U_UTILS_H # include # include # include "s_struct.h" t_bool u_is_not_escaped(const char *head, const char *ptr); void u_eof_fd(int32_t fd); uint64_t u_builtins_get_argc(const char *args[]); char **u_get_env_var_names(t_msh *msh); uint8_t u_get_builtin_id(const char bin[]); #endif