
libft is a personal library for coding C that consists of 100+ self-created functions using only Core C. The purpose of the library is to have all the necessery basic utility tools from external C libraries available on demand without the need (or with minimal need) for any third-party sources, as well as creating some tools for personal use that wouldn’t be found in public libraries.
Most of the functions created for libft are done respecting the original names, prototypes and usages of their public counterparts if such exist. The exception to this is done if and only if the original library functions are for example poorly protected against segmentation faults or simply aren’t working as their documentation describes (you would be amazed how many of them aren’t…).
Written in Core C
Public repository of the project can be found here.