diff --git a/.get_next_line.h.swp b/.get_next_line.h.swp new file mode 100644 index 0000000..5119566 Binary files /dev/null and b/.get_next_line.h.swp differ diff --git a/a.out b/a.out index af04f43..f588b64 100755 Binary files a/a.out and b/a.out differ diff --git a/get_next_line.c b/get_next_line.c index 25ad771..9c0bd7b 100644 --- a/get_next_line.c +++ b/get_next_line.c @@ -1,3 +1,15 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* get_next_line.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: cchauvet # include -# define BUFFER_SIZE 42 void *ft_calloc(size_t nmemb, size_t size); void *ft_realloc(void *ptr, size_t size); -char *ft_strcat(char *dst, char *src); +char *ft_strfcat(char *dst, char *src); char *ft_strndup(char *src, size_t n); char *get_next_line(int fd); #endif diff --git a/get_next_line_utils.c b/get_next_line_utils.c index a495aa9..e21a40b 100644 --- a/get_next_line_utils.c +++ b/get_next_line_utils.c @@ -1,3 +1,15 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* get_next_line_utils.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: cchauvet