This repository contains a set of exercices to learn C.
The goal of this exercice is to implement a linked list and several methods to manipulate it.
Code is in the linked_list directory.
The goal of this exercice is to implement a sorting algorithm.
Code is in the sort directory.
Tests are written in the tests directory. They are written using the assert macro.
The Makefile contains a set of rules to compile the exercices and run the tests.
The code is formatted using clang-format. The configuration file is .clang-format.
The code style is described in the STYLE.md file.
This project is licensed under the MIT License - see the LICENSE file for details