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
- Host: GitHub
- URL: https://github.com/neothebestdeveloper/nclib
- Owner: NeoTheBestDeveloper
- License: mit
- Created: 2023-07-19T05:10:51.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-01-22T15:39:21.000Z (over 2 years ago)
- Last Synced: 2024-01-22T18:42:17.747Z (over 2 years ago)
- Topics: c, library, meson
- Language: C
- Homepage:
- Size: 59.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```