https://github.com/thisisignitedoreo/strap
A bunch of useful stuff for casual C coding
https://github.com/thisisignitedoreo/strap
c-language general-purpose library
Last synced: 4 months ago
JSON representation
A bunch of useful stuff for casual C coding
- Host: GitHub
- URL: https://github.com/thisisignitedoreo/strap
- Owner: thisisignitedoreo
- Created: 2025-01-26T13:18:46.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-01-26T18:36:44.000Z (4 months ago)
- Last Synced: 2025-01-26T19:19:57.919Z (4 months ago)
- Topics: c-language, general-purpose, library
- Language: C
- Homepage:
- Size: 5.86 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# libstrap
A bunch of useful stuff for casual C coding## Overview
Library consists of modules:- `array.h`: dynamic arrays
- `fileio.h`: files and directories i/o
- `arena.h`: arena allocators
- `string.h`: stringview implementationCheck sources for more info
## Build
```console
$ ./build.sh
$ gcc -L. -o main main.c -lstrap
```