General extension library for C. No dependencies beyond common POSIX platform headers. \[st]andard library, [i]zzy\, in the same vein as stb.
David Ulrich 81ce451e65 less lexer logging, parser generator syntax changed? | hace 1 año | |
---|---|---|
dwarf | hace 4 años | |
hash_fns | hace 4 años | |
lexer | hace 1 año | |
parser | hace 1 año | |
scripting | hace 3 años | |
string_utils | hace 1 año | |
test | hace 1 año | |
.gitignore | hace 1 año | |
LICENSE | hace 5 años | |
README.md | hace 4 años | |
b64.c | hace 1 año | |
b64.h | hace 1 año | |
build.sh | hace 3 años | |
conventions.h | hace 1 año | |
err.h | hace 4 años | |
fs.c | hace 1 año | |
fs.h | hace 1 año | |
hash.c | hace 1 año | |
hash.h | hace 1 año | |
heap.c | hace 1 año | |
heap.h | hace 1 año | |
ini.c | hace 2 años | |
ini.h | hace 2 años | |
initest.ini | hace 2 años | |
macros.h | hace 3 años | |
matrix.c | hace 1 año | |
matrix.h | hace 1 año | |
memarena.c | hace 5 años | |
memarena.h | hace 5 años | |
mempool.c | hace 4 años | |
mempool.h | hace 4 años | |
misc.c | hace 4 años | |
misc.h | hace 3 años | |
rb.c | hace 4 años | |
rb.h | hace 4 años | |
ring.c | hace 4 años | |
ring.h | hace 4 años | |
rpn.c | hace 3 años | |
rpn.h | hace 4 años | |
sets.c | hace 2 años | |
sets.h | hace 4 años | |
sexp.c | hace 5 años | |
sexp.h | hace 5 años | |
stats.c | hace 4 años | |
stats.h | hace 4 años | |
sti.c | hace 1 año | |
sti.h | hace 1 año | |
string.c | hace 1 año | |
string.h | hace 1 año | |
string_int.c | hace 1 año | |
string_int.h | hace 2 años | |
svec.c | hace 1 año | |
svec.h | hace 1 año | |
talloc.c | hace 4 años | |
talloc.h | hace 3 años | |
test.c | hace 1 año | |
utf.c | hace 1 año | |
utf.h | hace 1 año | |
vec.c | hace 4 años | |
vec.h | hace 1 año |
General extension library for C. No dependencies beyond common POSIX platform headers. "[st]andard library, [i]zzy", in the same vein as stb.
#include "sti/sti.h"
and compile sti/sti.c
to get everything at once, or
select individual pairs a la carte.
(Un)licensed under the Unlicense, which is effectively lawyer speak for Public Domain in all sane countries that have the concept of Public Domain. To quote Sam Hocevar, You just DO WHAT THE FUCK YOU WANT TO.
The API may change drastically with no notice. This is my personal set of utilities and I have not permanently settled on how it should work.
A few of the functions have terrible performance when compiled with -O0 but excellent performance when compiled with -O2/3.
Some of the _EACH() loop macros use typeof, a gcc-specific extension. I am not currently aware of a workaround for clang.
Most of the data structures use macro magic to be relatively type-safe and avoid void* casting where possible. Acknowledgements to nothings/Sean Barrett for the concept.