change the parsing add join strlcpy strlcat

This commit is contained in:
Maoake Teriierooiterai
2026-01-09 08:55:43 +01:00
parent c131843bc0
commit 0e5ef61de7
7 changed files with 168 additions and 5 deletions

View File

@@ -27,5 +27,10 @@ int checker(int argc, char **argv);
int len_split(char **tab);
char *ft_itoa(int n);
int ft_isdigit(int c);
char *ft_strjoin(char const *s1, char const *s2);
int ft_strlcpy(char *dst, const char *src, int size);
int ft_strlcat(char *dst, const char *src, int size);
char *join_all(int argc, char **argv);
char **split_all(char *tab);
#endif