Skip to content

alexishachemi/linked

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Linked

A generic C linked list library

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.

Dependencies

Building

to build the library you can use the included Makefile:

make

It will then build the liblinked.a binary

Installing

You can install the library into your system using the following command:

make install

You can then uninstall it using:

make uninstall

Usage

Once 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

About

Epitech coding-style-compliant generic linked list library in C

Resources

Stars

Watchers

Forks

Contributors