Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
yabtaour
GitHub Repository: yabtaour/Get_next_line-42
Path: blob/main/get_next_line.h
342 views
1
/* ************************************************************************** */
2
/* */
3
/* ::: :::::::: */
4
/* get_next_line.h :+: :+: :+: */
5
/* +:+ +:+ +:+ */
6
/* By: yabtaour <[email protected]> +#+ +:+ +#+ */
7
/* +#+#+#+#+#+ +#+ */
8
/* Created: 2021/12/07 11:16:10 by yabtaour #+# #+# */
9
/* Updated: 2021/12/09 13:43:43 by yabtaour ### ########.fr */
10
/* */
11
/* ************************************************************************** */
12
#ifndef GET_NEXT_LINE_H
13
# define GET_NEXT_LINE_H
14
15
# include <stdlib.h>
16
# include <fcntl.h>
17
# include <unistd.h>
18
19
size_t ft_strlen(char *str);
20
char *ft_strchr(char *str, int c);
21
char *ft_strjoin(char *s1, char *s2);
22
char *get_next_line(int fd);
23
24
#endif
25
26