https://github.com/doccaico/yac
A useful C library
https://github.com/doccaico/yac
c
Last synced: 12 months ago
JSON representation
A useful C library
- Host: GitHub
- URL: https://github.com/doccaico/yac
- Owner: doccaico
- Created: 2025-06-11T16:56:47.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-15T00:38:46.000Z (about 1 year ago)
- Last Synced: 2025-06-15T01:30:24.860Z (about 1 year ago)
- Topics: c
- Language: C
- Homepage:
- Size: 129 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## YAC
Only tested on Windows (cl.exe).
| Role | Header |
| - | - |
| Dynamic Array | [yac_dynamic_array.h](/yac_dynamic_array.h) |
| Deque | [yac_deque.h](/yac_deque.h) |
| Map (Ordered) | [yac_ordered_map.h](/yac_ordered_map.h) |
| Map (Unordered) | [yac_unordered_map.h](/yac_unordered_map.h) |
| String View | [yac_string_view.h](/yac_string_view.h) |
| String Builder | [yac_string_builder.h](/yac_string_builder.h) |
### Testing
```sh
# yac_dynamic_array.h (/GF = eliminate duplicate strings)
$ cd tests
$ cl.exe /nologo /std:c11 /GF /W4 -wd4709 yac_dynamic_array_test.c && .\yac_dynamic_array_test.exe
```