aboutsummaryrefslogtreecommitdiff
path: root/include/minishell.h
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-08-20 23:23:35 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-08-20 23:23:35 +0200
commitcde465358750ef03b66655edcbef468a4a2f210b (patch)
tree5eb3ebd024b047e24873e60f4c31d8f30f3c19d5 /include/minishell.h
parenta8f30277f6a2dd0a10ec26f923ac727eb79862da (diff)
downloadminishell-cde465358750ef03b66655edcbef468a4a2f210b.tar.gz
minishell-cde465358750ef03b66655edcbef468a4a2f210b.tar.bz2
minishell-cde465358750ef03b66655edcbef468a4a2f210b.zip
Refactoring preprocess, replacing ms_split_notrim by a more direct function
Diffstat (limited to 'include/minishell.h')
-rw-r--r--include/minishell.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/minishell.h b/include/minishell.h
index 5ea68c5..a934bb7 100644
--- a/include/minishell.h
+++ b/include/minishell.h
@@ -6,7 +6,7 @@
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/26 15:33:51 by cacharle #+# #+# */
-/* Updated: 2020/08/19 17:42:15 by charles ### ########.fr */
+/* Updated: 2020/08/20 14:45:19 by charles ### ########.fr */
/* */
/* ************************************************************************** */
@@ -149,7 +149,6 @@ int utils_directory_iter(
size_t utils_var_end(char *name);
bool utils_valid_identifier(char *name);
bool utils_start_with_valid_identifier(char *name);
-char **ms_split_notrim(const char *s, char c);
void print_prompt(void);