clean: norm

This commit is contained in:
Camille Chauvet
2023-06-12 14:31:59 +02:00
parent ab4e7e7034
commit 45521211b0
30 changed files with 315 additions and 23 deletions

View File

@ -6,7 +6,7 @@
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/01/04 14:03:10 by cchauvet #+# #+# */
/* Updated: 2023/05/03 11:02:33 by cchauvet ### ########.fr */
/* Updated: 2023/06/12 14:17:50 by cchauvet ### ########.fr */
/* */
/* ************************************************************************** */
@ -14,7 +14,7 @@
# define EXTRA_H
# include <stdarg.h>
# include <stdlib.h>
#include <sys/types.h>
# include <sys/types.h>
# include <unistd.h>
# include <fcntl.h>
# include "../libft/libft.h"
@ -31,7 +31,8 @@ char *ft_strgen(char c, size_t len);
char *ft_strfjoin(char *s1, char *s2);
char *ft_strmerger(size_t arg_len, ...);
int ft_is_in(const char *str, char c);
char **ft_tabrealloc(char **tab, size_t current_size, size_t new_size);
char **ft_tabrealloc(char **tab, size_t current_size,
size_t new_size);
char *ft_strndup(const char *src, size_t n);
ssize_t ft_strchri(char *str, char c);
int ft_contain_only_str(const char *str, const char *to_find);