1
0
This repository has been archived on 2024-10-25. You can view files and clone it, but cannot push or open issues or pull requests.
get_next_line/get_next_line.h

29 lines
1.2 KiB
C
Raw Normal View History

2023-12-01 23:05:16 +01:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/12/01 17:12:00 by adjoly #+# #+# */
2023-12-08 11:31:17 +01:00
/* Updated: 2023/12/08 11:12:12 by adjoly ### ########.fr */
2023-12-01 23:05:16 +01:00
/* */
/* ************************************************************************** */
#ifndef GET_NEXT_LINE_H
# define GET_NEXT_LINE_H
# include <unistd.h>
# include <stdlib.h>
# ifndef BUFFER_SIZE
# define BUFFER_SIZE 5
# endif
char *get_next_line(int fd);
2023-12-08 11:31:17 +01:00
char *ft_strljoin(char *s1, char *s2, size_t len);
2023-12-01 23:05:16 +01:00
size_t ft_strlen(char *s);
2023-12-06 11:45:25 +01:00
void *ft_calloc(size_t nmemb, size_t size);
2023-12-08 11:31:17 +01:00
size_t ft_strlcpy(char *dst, char *src, size_t size);
2023-12-01 23:05:16 +01:00
#endif