https://github.com/guycipher/llist
KISS linked list library
https://github.com/guycipher/llist
Last synced: 30 days ago
JSON representation
KISS linked list library
- Host: GitHub
- URL: https://github.com/guycipher/llist
- Owner: guycipher
- License: apache-2.0
- Created: 2025-06-28T10:07:56.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2025-06-28T11:05:56.000Z (8 months ago)
- Last Synced: 2025-06-28T12:23:18.088Z (8 months ago)
- Language: C
- Size: 8.79 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
A simple KISS linked list library written in C.
### Build it
```bash
mkdir -p build
cd build
cmake ..
cmake --build .
## Tests?
make test # OR ctest --verbose
## To install system wide you can do this manually.. for example on linux you'd do
sudo cp build/libllist.so /usr/local/lib/
sudo cp src/llist.h /usr/local/include/
sudo ldconfig
```
### License
Apache v2