pgomez-a / get_next_line

Thanks to get_next_line we will be able to read an open file line by line whose file descriptor is supplied as an argument.

Home Page:https://www.linkedin.com/in/pgomez-a/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

get_next_line

get_next_line

If you want to learn more about IT topics, I invite you to join my Patreon channel and visit my website: IA Notes

Thanks to get_next_line we will be able to read an open file line by line whose file descriptor is supplied as an argument. The main objective of the project is being able to work with static variables, as well as knowing how to manage dynamic memory so as not to obtain any memory leaks (leaks).

HOW TO USE GET_NEXT_LINE?

  1. Clone get_next_line repository:

    git clone https://github.com/pgomez-a/get_next_line.git && cd get_next_line
    
  2. Move the two main functions to your main function (usually main.c):

    mv get_next_line.c get_next_line_utils.c get_next_line.h ~/project_path/
    
  3. In you main function, include the header "get_next_line.h"

    #include <stdio.h>
    #include "get_next_line.h"
    
    int main(void)
    {
    
  4. Compile your program with the three moved functions:

    gcc get_next_line.c get_next_line_utils.c main.c
    

RETURN VALUES

Since is a function of type int, our get_next_line returns a value of type int. This value can be:

  • -1: if an error has occurred within our function, either because the entered arguments don't have the correct values or because an error occurred while reading the file.
  • 0: if it has reached EOF, that is, if the file has been read completely, returning the content read up to that moment.
  • 1: if it has found a line break, returning the content read up to that moment since the function was called.

ALLOWED FUNCTIONS

When it comes to reading a file, the use of lseek function can be helpful. This function allows us to read the file forward and backward. However, in this project we can't use it. Instead of this, we can only use the external functions: read, malloc and free. If we want to use another function, we have to program it ourselves. This is the reason why I have used some of the functions of my libft. Since we are not allowed to use lseek, we can only read the file once, so we have to use a static variable to store the characters that we have read but that are after the line break, so they won't be in the current output but in the next. In this way, we are practicing with the use of static variables at the same time that we have to deal with dynamic memory.

EXAMPLES OF USE

main_gnl

text_gnl

leaks_gnl

output_gnl

About

Thanks to get_next_line we will be able to read an open file line by line whose file descriptor is supplied as an argument.

https://www.linkedin.com/in/pgomez-a/

License:MIT License


Languages

Language:C 100.0%