2nd 42 School Exam
-
Updated
Oct 18, 2024 - C
2nd 42 School Exam
42 Exam Rank 03
Read a text file line by line.
The goal of this project is to create the function get_next_line.c which, when called in a loop, will then allow the available text in the file descriptor to be read one line at a time until the end of the file. The program must compile with the flag-D BUFFER_SIZE=xx which will be used as the buffer size for the read calls in get_next_line.
get_next_line made easy
42cursus -> get_next_line.
get_next_line is a 42 school project meant to teach us how to read from a file descriptor and use static variables.
Get the next line of a file
This project is about programming a function that returns a line read from a file descriptor.
Reading a line on a fd is way too tedious.
This project will not only allow you to add a very convenient function to your collection, but it will also make you learn a highly interesting new concept in C programming: static variables.
Reading a line from a fd is way too tedious
⭐ Take a look at my GitHub repository featuring projects completed during my time at 42 Firenze! ⭐
Get Next Line is a C function that returns a line, read from a file descriptor. In short, it can read any valid file and does that line by line to optimize memory, since the file size is not known. It's an extremely useful function that can be used in the next school's projects.
My repo for 42cursus' get-next-line project
function to read from any file descriptor line by line
Read content of file and return by line
Parce que lire depuis un fd, c’est pas passionnant
get_next_line 42 Common Core project
Add a description, image, and links to the get-next-line-42 topic page so that developers can more easily learn about it.
To associate your repository with the get-next-line-42 topic, visit your repo's landing page and select "manage topics."