Linked is a simple general purpose linked list library made in C. The library was made to be compliant with the EPITECH school coding-style rules.
- GNU Compiler Collection (11.4.0)
- GNU Make (4.3)
- Criterion (2.4.2) (for unit tests)
to build the library you can use the included Makefile:
makeIt will then build the liblinked.a binary
You can install the library into your system using the following command:
make installYou can then uninstall it using:
make uninstallOnce installed or built, you can use the library by including the library header in your source files:
#include <linked.h>and add the library to the linker when compiling:
gcc myfile.c -llinked