/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* b_export_mute.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rbousset +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/14 17:19:27 by rbousset #+# #+# */ /* Updated: 2020/02/14 17:19:29 by rbousset ### ########lyon.fr */ /* */ /* ************************************************************************** */ #include #include #include #include "b_export.h" #include "b_export_next.h" #include "d_enum.h" #include "f_fail.h" #include "s_destroy.h" #include "s_line.h" #include "s_lvars.h" #include "s_struct.h" #include "u_utils.h" #include "u_vars.h" uint8_t b_export_mute(char *args[], t_msh *msh) { /* TODO: norme */ char **ptr; char *varval; char fmt[4096]; t_bool next; uint8_t r; if (args[0] == NULL) return (0); r = 0; ptr = args; while (*ptr != NULL) { next = FALSE; if (check_valid_identifier(*ptr) == FALSE) { next = TRUE; r = 1; } if (next == FALSE && check_equals(*ptr) == FALSE) { next = TRUE; ft_sprintf(fmt, "$%s", *ptr); varval = u_get_cstm_vr(fmt, msh); if (varval != NULL) { ft_sprintf(fmt, "%s=%s", *ptr, varval); b_add_to_env_from_globals(*ptr, fmt, msh); ft_memdel((void*)&varval); } } else if (next == FALSE && check_equals(*ptr) == TRUE) { b_export_with_equals(*ptr, msh); } ptr++; } /* TODO: finish export */ return (r); }