aboutsummaryrefslogtreecommitdiff
path: root/get_next_line.h
blob: efe927b65d985e8194f1e6f120ae19a5c98dbd2c (plain)
1
2
3
4
5
6
7
8
9
#ifndef GET_NEXT_LINE_H
# define GET_NEXT_LINE_H

# define NEWLINE 0x0A
# define BUFF_SIZE (1 << 8)

int get_next_line(const int fd, char **line);

#endif