get_next_line() is a function that that returns a line read from a file descriptor: repeated calls to the function let you read the text file pointed to by the file descriptor, one line at a time.
git clone git@github.com:rimarque/get_next_line.git
- Returns a line read from a file descriptor
- Repeated calls to the function read the text file one line at a time
- Uses the read() function, with any possible value defined as the BUFFER_SIZE
- Management of multiple file descriptors at the same time