summaryrefslogtreecommitdiffstats
path: root/src/p_args_next.h
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-10-27 19:59:20 +0100
committerJozanLeClerc <bousset.rudy@gmail.com>2020-10-27 19:59:20 +0100
commitc5aae008dee36276154882d8fd56c3bdeb473474 (patch)
treea40740914847ebf39a5f8cb3acf6a48c8b9d61ef /src/p_args_next.h
parentTODO update (diff)
download42-minishell-c5aae008dee36276154882d8fd56c3bdeb473474.tar.gz
42-minishell-c5aae008dee36276154882d8fd56c3bdeb473474.tar.bz2
42-minishell-c5aae008dee36276154882d8fd56c3bdeb473474.tar.xz
42-minishell-c5aae008dee36276154882d8fd56c3bdeb473474.tar.zst
42-minishell-c5aae008dee36276154882d8fd56c3bdeb473474.zip
Now norme
Diffstat (limited to 'src/p_args_next.h')
-rw-r--r--src/p_args_next.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/p_args_next.h b/src/p_args_next.h
index f21dfd9..22d06a9 100644
--- a/src/p_args_next.h
+++ b/src/p_args_next.h
@@ -13,12 +13,11 @@
#ifndef P_ARGS_NEXT_H
# define P_ARGS_NEXT_H
-# include <stdint.h>
-uint16_t p_dup_words(char *words[],
+unsigned short p_dup_words(char *words[],
const char word[],
- const uint16_t argc,
+ const unsigned short argc,
const size_t start[]);
-void p_del_alloced_words(char *words[], uint16_t to_del);
+void p_del_alloced_words(char *words[], unsigned short to_del);
#endif