26 lines
1.1 KiB
C
26 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* get_next_line.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: apommier <alexpomms@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2020/12/14 05:58:49 by apommier #+# #+# */
|
|
/* Updated: 2021/11/02 18:16:14 by kinou ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef GET_NEXT_LINE_H
|
|
# define GET_NEXT_LINE_H
|
|
|
|
# include <stdlib.h>
|
|
# include <unistd.h>
|
|
|
|
int ft_strlen(char *s1);
|
|
char *get_next_line(int fd);
|
|
char *ft_strjoin(char *savee, char *s2);
|
|
char *ft_strchr(const char *s, int c);
|
|
void *ft_calloc(size_t nmemb, size_t size);
|
|
|
|
#endif
|