https://github.com/lchsk/c-libs
Some C libraries: hashmap, list
https://github.com/lchsk/c-libs
c hashmap list
Last synced: 12 months ago
JSON representation
Some C libraries: hashmap, list
- Host: GitHub
- URL: https://github.com/lchsk/c-libs
- Owner: lchsk
- Created: 2016-10-09T18:09:55.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2020-04-01T18:44:45.000Z (over 6 years ago)
- Last Synced: 2025-02-25T11:48:39.220Z (over 1 year ago)
- Topics: c, hashmap, list
- Language: C
- Homepage:
- Size: 19.5 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

Some C libraries
## Map `map.c` `map.h`
- hashmap implementation
- supported operations: `map_new`, `map_free`, `map_set`, `map_get`, `map_del`, `map_in`, `map_size`
- examples in `map_test.c`
## List `list.c` `list.h`
- dynamic array implementation
- supported operations: `list_new`, `list_free`, `list_append`, `list_get`, `list_size`, `list_del`, `list_in`
- examples in `list_test.c`