diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-09-08 20:26:51 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-09-08 20:26:51 +0200 |
commit | 74766656e5b605785e0e9622eb7f10d20a5467e3 (patch) | |
tree | d3818db14279a2e9649e314b3af4e819c61228e2 /src/u_utils.c | |
parent | Pretty bav (diff) | |
download | 42-minishell-74766656e5b605785e0e9622eb7f10d20a5467e3.tar.gz 42-minishell-74766656e5b605785e0e9622eb7f10d20a5467e3.tar.bz2 42-minishell-74766656e5b605785e0e9622eb7f10d20a5467e3.tar.xz 42-minishell-74766656e5b605785e0e9622eb7f10d20a5467e3.tar.zst 42-minishell-74766656e5b605785e0e9622eb7f10d20a5467e3.zip |
I hate myself and I want to die
Diffstat (limited to 'src/u_utils.c')
-rw-r--r-- | src/u_utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/u_utils.c b/src/u_utils.c index 7f75c4d..dd1634b 100644 --- a/src/u_utils.c +++ b/src/u_utils.c @@ -20,7 +20,7 @@ #include "s_struct.h" t_bool - u_is_not_escaped(char *head, char *ptr) + u_is_not_escaped(const char *head, const char *ptr) { if (((ptr - head) == 0) || ((ptr - head) >= 1 && *(ptr - 1) != C_BACKS) || |