Libft project

Statement of the project (in Spanish / English)

About the project

Libft is a project that consists on creating a library and replicating several funtions that belong to the Libc library.

In addition, there is a bonus part that consists on creating functions to manipulate lists.

Mandatory part

Functions from libc:

Use malloc to implement:

Additional functions:

Bonus part

Includes functions to manipulate lists.

typedef struct      s_list
{
    void            *content;
    struct s_list   *next;
}                   t_list;

[!NOTE](content is the data contained in the node (void * allows to store any kind of data) next is the address of the next node (NULL if it is the last one))

Project status

The project is finished, and marked with 125.