maxishell
Implementation of a shell for Linux-like systems
|
#include "tokens.h"
Go to the source code of this file.
Functions | |
char ** | initialize_result_array (int *count) |
int | toggle_quotes (int in_quotes, char current_char) |
char ** | add_segment_on_delimiter (char **result, char **start, char *str, int *count) |
char ** | finalize_result_array (char **result, int count) |
char ** add_segment_on_delimiter | ( | char ** | result, |
char ** | start, | ||
char * | str, | ||
int * | count | ||
) |
Definition at line 33 of file loc_env_var_handler_utils_utils_utils_utils.c.
References ft_add_segment().
Referenced by ft_split_preserve_quotes().
char ** finalize_result_array | ( | char ** | result, |
int | count | ||
) |
Definition at line 41 of file loc_env_var_handler_utils_utils_utils_utils.c.
Referenced by ft_split_preserve_quotes().
char ** initialize_result_array | ( | int * | count | ) |
Definition at line 15 of file loc_env_var_handler_utils_utils_utils_utils.c.
Referenced by ft_split_preserve_quotes().
int toggle_quotes | ( | int | in_quotes, |
char | current_char | ||
) |
Definition at line 26 of file loc_env_var_handler_utils_utils_utils_utils.c.
Referenced by ft_split_preserve_quotes().