Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 871 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 871 Bytes

libft

One of the introductory projects at Codam, libft is a static function library, written in C. Functions included are either implementations of existing functions from the standard C library or unique functions that standardize common code segments used when coding in C.

This library includes basic functions related to the following sub-domains of C programming:

  • String manipulation.
  • Linked list structures.
  • Memory management.
  • Data transformation.
  • Reading and writing to external files.

For the complete list of included functions, refer to the libft.h file in the "includes" folder. The library can be compiled into a libft.a file using the Makefile, located in the root folder.

Last updated: 21-05-2019 / Jesse Dunnink