gnl-42
There are 30 repositories under gnl-42 topic.
pasqualerossi/Get_Next_Line
Read a text file line by line.
pasqualerossi/42-Cursus-Tester
Instructions on how to use the 42 Cursus Tester.
clementvidon/get_next_line
[documented code / -pedantic -std=c89] - Get the next line of text available on a file descriptor. Can be used within a loop to read a file line by line.
BaBreton/42-Get_next_line
Get the next line of a file
gjmacias/get_next_line
my get next line from 42 barcelona
mcombeau/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.
pvaladares/42cursus-01-get_next_line
This project is about programming a function that returns a line read from a file descriptor.
stankudrow/get_next_line
42cursus -> get_next_line.
mendes-jv/get-next-line
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.
a-parfenov/get_next_line
📖 My third project is at <School 21>. I wrote a function that returns a string read from a file descriptor --->
arnaudderison/42-get_next_line
Project of 42: get_next_line
justeozan/get_next_line
The get_next_line project in C reads lines from a file descriptor one at a time, designed for academic exploration. It offers an efficient solution for line extraction while dynamically managing memory, providing a practical and playful opportunity to delve into file reading and memory concepts.
abeph00/GNL
A program that reads a line.
aysuoner/42-get_next_line
This project is about the function that return newline. GNL function read until the newline and return the line.
CERVIII/get_next_line
The get_next_line project of 42 school
EcosElisa/Get_Next_Line
42 school's second project: "This project is about programming a function that returns a line read from a file descriptor."
f-corvaro/GET_NEXT_LINE
"Line-by-Line File Reader"
garich/GNL_42
May it be a file, stdin, or even later a network connection, you will always need a way to read content line by line. It is time to start working on this function, which will be essential for your future projects.
idleira/get_next_line
c function that reads any valid file line by line
liz753/get_next_line
This project is about programming a function that returns a line read from a file descriptor.
MaloP47/get_next_line
Returning a line read from a (or multiple) file descriptor - C
merlin-101/gnl-Project
This project is about programming a function that returns a line read from a file descriptor, while using static variables.
mohsink20/get_next_line
This project involves programming a function that returns a line read from a file descriptor. It not only adds a convenient function to your collection but also introduces the concept of static variables in C programming.
rphlr/42-get_next_line
Whether it's a file, stdin, or even later a network connection, you will always need a way to read the content line by line. It's time to start working on this feature, which will be essential for your future projects.
victor-helloworld/gnl
[42 project]
yazan-metax/get_next_line
code for an important C function called get_next_line
crdalila/42_GNL
Proyecto para imprimir un fd línea por línea
suiramdev/42-gnl
📓 gnl is a function, a project from the 42 school curriculum, used to read line by line a file.