The goal of this project is to write a function that reads a line ending with a newline character ('\n') from a file descriptor. The size of the line is unknown for the function. Get_next_line introduces to a highly interesting new concept in C programming: static variables and their proper and efficient usage.
git clone https://github.com/psprawka/Get_next_line.git
- return
1when it read a line - return
0when it finished reading a file - return
-1when an error occurs
