2023-01-05 21:13:10 +01:00
< h1 align = "center" > libcproject< / h1 >
< p align = "center" >
< strong > C static library easier to use than `libc` (C standard library).</ strong >
< / p >
< p align = "center" >
< a href = "./CONTRIBUTING.md" > < img src = "https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat" / > < / a >
< a href = "./LICENSE" > < img src = "https://img.shields.io/badge/licence-MIT-blue.svg" alt = "Licence MIT" / > < / a >
< a href = "./CODE_OF_CONDUCT.md" > < img src = "https://img.shields.io/badge/Contributor%20Covenant-v2.0%20adopted-ff69b4.svg" alt = "Contributor Covenant" / > < / a >
< br / >
2023-06-24 20:29:30 +02:00
< a href = "https://github.com/theoludwig/libcproject/actions/workflows/ci.yml" > < img src = "https://github.com/theoludwig/libcproject/actions/workflows/ci.yml/badge.svg?branch=develop" / > < / a >
2023-01-05 21:13:10 +01:00
< a href = "https://conventionalcommits.org" > < img src = "https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg" alt = "Conventional Commits" / > < / a >
< a href = "https://github.com/semantic-release/semantic-release" > < img src = "https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg" alt = "semantic-release" / > < / a >
< / p >
2023-01-05 19:28:05 +01:00
## About
2023-01-05 21:13:10 +01:00
**libcproject** is a C static library for learning purposes. It tries to implement useful functions/data structures while being easier to use than `libc` (C standard library) as much as possible.
C is a low-level programming language and we often end up reinventing the wheel as the C standard library (`libc`) is quite small and in my humble opinion, not well designed.
**libcproject** solve this by providing common functions or data structures (`dictionary`, `linked_list` , `queue` , `stack` , etc.) we might need in our C projects.
2023-01-05 19:28:05 +01:00
2023-01-06 17:46:23 +01:00
[Online documentation ](https://libcproject.vercel.app/ ).
2023-01-05 19:28:05 +01:00
## Prerequisites
- [GNU coreutils ](https://www.gnu.org/software/coreutils/ )
- [GNU binutils ](https://www.gnu.org/software/binutils/ )
- [GNU gcc ](https://gcc.gnu.org/ )
- [GNU make ](https://www.gnu.org/software/make/ )
2023-01-06 18:08:34 +01:00
- [ClangFormat ](https://clang.llvm.org/docs/ClangFormat.html )
2023-01-06 16:32:29 +01:00
- [Doxygen ](https://www.doxygen.nl/ )
2023-01-05 19:28:05 +01:00
For example on GNU/Linux Ubuntu:
```sh
sudo apt-get install build-essential gcc make clang-format
2023-01-06 16:32:29 +01:00
sudo apt-get install doxygen doxygen-gui doxygen-doc graphviz
2023-01-05 19:28:05 +01:00
```
## Usage
2023-01-05 21:13:10 +01:00
```sh
make # to compile
make run # to run main
make test # to run unit tests
make lint # to lint the code
2023-01-06 16:32:29 +01:00
make documentation # to generate the documentation
2023-01-05 21:13:10 +01:00
make clean # to clean up
nm ./build/libcproject.a # to see the symbols
```
2023-01-05 19:28:05 +01:00
Steps to create a new C project that uses `libcproject` :
2023-01-07 18:57:14 +01:00
### Step 1: Install and Compile `libcproject`
2023-01-05 19:28:05 +01:00
```sh
2023-01-07 18:57:14 +01:00
# Clone the repository
2023-06-24 20:29:30 +02:00
git clone git@github.com:theoludwig/libcproject.git
2023-01-07 18:57:14 +01:00
# Go to libcproject directory
cd libcproject
# Compile the library
2023-01-05 19:28:05 +01:00
make
```
### Step 2: Create a new project
```sh
mkdir my-project
cd my-project
```
### Step 3: Install `libcproject` in the project
```sh
mkdir libcproject
cp --recursive < path-to-libcproject > ./ # copy
# or
ln -s < path-to-libcproject > ./ # symbolic link
```
### Step 4: Create a new C file
```sh
touch main.c
```
```cpp
#include <stdio.h>
#include <stdlib.h>
#include "libcproject/libcproject.h"
int main() {
char* string = "Hello, world!";
printf("%s\n", string);
printf("string_length = %ld\n", string_get_length(string)); // `string_get_length` is a function from `libcproject`
return EXIT_SUCCESS;
}
```
### Step 5: Compile your project and link it with the library
```sh
gcc -o ./main.exe ./main.c -L. -l:./libcproject/build/libcproject.a
```
2023-01-05 21:13:10 +01:00
## 💡 Contributing
2023-01-05 19:28:05 +01:00
2023-01-05 21:13:10 +01:00
Anyone can help to improve the project, submit a Feature Request, a bug report or even correct a simple spelling mistake.
2023-01-05 19:28:05 +01:00
2023-01-05 21:13:10 +01:00
The steps to contribute can be found in the [CONTRIBUTING.md ](./CONTRIBUTING.md ) file.
## 📄 License
[MIT ](./LICENSE )