https://github.com/pseudomuto/c-data-structures
A simple library of data structures for C
https://github.com/pseudomuto/c-data-structures
Last synced: 11 months ago
JSON representation
A simple library of data structures for C
- Host: GitHub
- URL: https://github.com/pseudomuto/c-data-structures
- Owner: pseudomuto
- Created: 2013-04-25T21:28:21.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2020-01-02T20:29:52.000Z (over 6 years ago)
- Last Synced: 2025-04-14T00:57:02.511Z (about 1 year ago)
- Language: C
- Size: 66.4 KB
- Stars: 54
- Watchers: 7
- Forks: 22
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# C Data Structures
[](https://travis-ci.org/pseudomuto/c-data-structures)
[](https://codecov.io/gh/pseudomuto/c-data-structures)
A simple library of data structures for C. The current release contains implementations of
* Linked List
* Map
* Queue
* Stack
* Vector
## Contributing
This application uses [CMake](https://cmake.org/). Any recent (> 3.10) will do.
* `make build` (generate the build system and build the library)
* `make test` (run the unit tests)
* `BUILD_TYPE=Release make build` to generate a release version of the static library