Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vinicius-santoro/42-formation-lvl1-2.get_next_line
Project 2: get_next_line - Second project for the formation of software engineers at school 42 São Paulo.
https://github.com/vinicius-santoro/42-formation-lvl1-2.get_next_line
42born2code 42school 42sp c shell software-engineering
Last synced: about 1 month ago
JSON representation
Project 2: get_next_line - Second project for the formation of software engineers at school 42 São Paulo.
- Host: GitHub
- URL: https://github.com/vinicius-santoro/42-formation-lvl1-2.get_next_line
- Owner: Vinicius-Santoro
- Created: 2021-09-18T01:32:56.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-09-30T21:13:31.000Z (over 3 years ago)
- Last Synced: 2024-11-06T15:32:04.334Z (3 months ago)
- Topics: 42born2code, 42school, 42sp, c, shell, software-engineering
- Language: C
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
42-formation-lvl1-2.get_next_line
### _Project 2 - Get Next Line - Second project for the formation of software engineers at school 42 São Paulo_
- The aim of this project is to make we code a function that returns a line,
read from a file descriptor.### _The project consists of two parts_
- In the first part, i coded a set of the functions to read the file descriptor.
- In the second part (bonus), I coded a set of functions to read more than one file descriptor.## _Functions made in this project:_
### _Functions for mandatory part_
- [`get_next_line.c`](1.Mandatory-Part/get_next_line.c) - read the file descriptor.
- [`get_next_line_utils.c`](1.Mandatory-Part/get_next_line_utils.c) - auxiliary functions for GNL. (functions were done in the first project - Libft).### _Functions for bonus part_
- [`get_next_line_bonus.c`](2.Bonus-Part/get_next_line_bonus.c) - read file descriptors.
- [`get_next_line_utils_bonus.c`](2.Bonus-Part/get_next_line_utils_bonus.c) - auxiliary functions for GNL_bonus. (functions were done in the first project - Libft).