An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

![C/C++ CI](https://github.com/lchsk/c-libs/workflows/C/C++%20CI/badge.svg)

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`