Files
myclib/README.md

29 lines
436 B
Markdown

# myclib
A small, personal C library for learning and experimentation.
**Not production-ready. Use at your own risk.**
## Features
All the features listed are Thread-safe.
- Hashmaps
- Strings
- Circular queues
- Vectors
- Stack
## Installation
Clone the repo, and then using `meson` install it:
```
$ meson setup build
$ cd build
$ meson install
```
## Usage
See the `test/` folder for examples.