int get_next_line(int fd, char **line);
get_next_line.c, get_next_line_utils.c, get_next_line.h
#1. 프로그램이 읽을 파일 디스크럽터(file descriptor for reading)
#2. 읽어왔던 값(The value of what has been read)
1 : 한 라인이 읽혔을 때(A line has been read)
0 : EOF에 도달했을 때(EOF has been reached)
-1 : 에러가 발생했을 때(An error happened)
파일 디스크럽터로부터 읽어 온 하나의 라인(newline 없이)을 반환하는 함수 작성
Write a function which returns a line read from a file descriptor, without the newline