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

# define BUFF_SIZE (1 << 8)

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

#endif