raphanh0's Stars
Surfi89/ft_printf
42cursus' ft_printf project. Begin date 06/sep/2021. Finish date 13/sep/2021. About 30h of total work.
ayoub0x1/get_next_line
Get Next Line (42cursus). This project aims to create a function that, allows to read a line ending with a newline character ('\n') from a file descriptor.
520luigi/Get_Next_Line
Get Next Line is a project at 42. It is a function that reads a file and allows you to read a line ending with a newline character from a file descriptor. When you call the function again on the same file, it grabs the next line. This project deals with memory allocation and when to free and allocate memory to prevent leaks. A (-1) is returned is an error occurred. A (0) is returned if the file is finished reading. And a (1) is returned if a line is read.
jdecorte-be/42-Get-next-line
This projects is about creating a function that, allows to read a line ending with a newline character ('\n') from a file descriptor, without knowing its size beforehand.