Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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).