-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathget_next_line.h
More file actions
32 lines (29 loc) · 1.38 KB
/
get_next_line.h
File metadata and controls
32 lines (29 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* ************************************************************************** */
/* */
/* :::::::: */
/* get_next_line.h :+: :+: */
/* +:+ */
/* By: nvan-der <nvan-der@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2020/01/17 18:44:57 by nvan-der #+# #+# */
/* Updated: 2020/02/12 14:42:38 by nvan-der ######## odam.nl */
/* */
/* ************************************************************************** */
#ifndef GET_NEXT_LINE_H
# define GET_NEXT_LINE_H
# ifndef BUFFER_SIZE
# define BUFFER_SIZE 64
# endif
# include <stdlib.h>
# include <unistd.h>
char *ft_strjoin(char *s1, char *s2);
char *ft_substr(char *s);
char *ft_cpy_cat(char *s1, char *s2, char *s3);
size_t ft_strlen(char *s);
char *ft_strdup(char *s);
char *ft_strchr(char *s, int c);
char *ft_read_fd(char **temp, int fd, ssize_t ret);
int get_next_line(int fd, char **line);
int ft_check_fd(char *s);
int ft_make_line(char **temp, char **line, int fd);
#endif