https://github.com/andersonhsporto/ft-get-next-line
Function Which Returns a Line Read From a File Descriptor
https://github.com/andersonhsporto/ft-get-next-line
buffer-management c malloc unix-logic
Last synced: about 2 months ago
JSON representation
Function Which Returns a Line Read From a File Descriptor
- Host: GitHub
- URL: https://github.com/andersonhsporto/ft-get-next-line
- Owner: andersonhsporto
- Created: 2021-08-25T04:08:05.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-11-29T22:29:26.000Z (over 3 years ago)
- Last Synced: 2025-01-17T05:29:07.839Z (3 months ago)
- Topics: buffer-management, c, malloc, unix-logic
- Language: C
- Homepage:
- Size: 24.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Get Next Line
Function which returns a line read from a file descriptor.* > [get_next_line.c](/get_next_line.c) `(char *get_next_line(int fd))` Calling get_next_line in a loop will allow you to read the text
available on the file descriptor one line at a time until the end of it.