summaryrefslogtreecommitdiffstats
path: root/src/u_parse.h
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-09-09 16:17:52 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-09-09 16:17:52 +0200
commitc68b7637d42fac3986857685980e7a7090f5a5aa (patch)
tree85d78b0a187695a7fab0124ae6c02ae12d223e91 /src/u_parse.h
parentIn progress (diff)
download42-minishell-c68b7637d42fac3986857685980e7a7090f5a5aa.tar.gz
42-minishell-c68b7637d42fac3986857685980e7a7090f5a5aa.tar.bz2
42-minishell-c68b7637d42fac3986857685980e7a7090f5a5aa.tar.xz
42-minishell-c68b7637d42fac3986857685980e7a7090f5a5aa.tar.zst
42-minishell-c68b7637d42fac3986857685980e7a7090f5a5aa.zip
In progress
Diffstat (limited to '')
-rw-r--r--src/u_parse.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/u_parse.h b/src/u_parse.h
index 631468e..8542f80 100644
--- a/src/u_parse.h
+++ b/src/u_parse.h
@@ -15,7 +15,7 @@
#include "d_define.h"
-t_quote_mode u_meet_dquote(char *head, char *ptr, t_quote_mode mode);
-t_quote_mode u_meet_squote(char *head, char *ptr, t_quote_mode mode);
+t_quote_mode u_meet_dquote(const char *head, char *ptr, t_quote_mode mode);
+t_quote_mode u_meet_squote(const char *head, char *ptr, t_quote_mode mode);
#endif