Libft
My first C library.
École 422021
CUnixLibrary
Libft was my first project as a Cadet at École 42. Its objective is to create your own C library, containing tools that will be used in future projects.
What is interesting about the project is that, to create the library, it is not
allowed to use functions from the standard C library, such as strlen
,
strdup
, etc. All functions must be implemented from scratch. This is
a great way to learn how the standard library functions work under the hood!
A biblioteca é composta por funções para manipulação de strings, memória e listas ligadas, sendo algumas destas recriações da biblioteca Libc.
The library is composed of functions for string manipulation, memory, and linked lists, some of which are recreations of the Libc library.