An open API service indexing awesome lists of open source software.

https://github.com/neothebestdeveloper/nclib

Just a base stuff for my C projects
https://github.com/neothebestdeveloper/nclib

c library meson

Last synced: about 1 year ago
JSON representation

Just a base stuff for my C projects

Awesome Lists containing this project

README

          

# Library for me which implement base data structures in C.

## Goals

- [x] Better type aliases
- [x] Stream
- [x] Panic
- [ ] Arena Allocator
- [ ] Str
- [ ] Hash Table
- [ ] Darray with "templates"

## Docs

If you want read documention read this [docs](./docs/README.md).

## How to build

Before install meson.

```sh
git clone https://github.com/NeoTheBestDeveloper/nclib
cd nclib

meson setup --buildtype=release build-release
meson compile -j 8 -C build-release
```