General extension library for C. No dependencies beyond common POSIX platform headers. \[st]andard library, [i]zzy\, in the same vein as stb.

izzy fbd6499d20 compatibility fixes hace 4 semanas
dwarf 1566a5afc0 pedantic fixes hace 4 años
hash_fns ad98d1218c Add sha256 and sha512 hash functions hace 4 años
lexer 8d3831617c progress on the c parser hace 2 meses
parser 81ce451e65 less lexer logging, parser generator syntax changed? hace 1 año
scripting c921594825 fixed a unch of encoding and alignment bugs hace 3 años
string_utils d805238a81 fs write_whole_file hace 1 año
test 81ce451e65 less lexer logging, parser generator syntax changed? hace 1 año
.gitignore 7dbda9d2fb much better hash table macros hace 1 año
LICENSE d6f6c74b64 Initial commit hace 5 años
README.md f761fd33d2 more heap functions hace 4 años
b64.c ba29a5f706 initial pass at base64_encode hace 1 año
b64.h ba29a5f706 initial pass at base64_encode hace 1 año
build.sh aed8b7086f a couple string fns for parsing c hace 3 años
conventions.h f16efae2ef coding conventions, todo list of string functions hace 1 año
err.h a23db7f116 parenthesis support for rpn converter hace 4 años
fs.c caa456783e read_whole_dir functions hace 1 año
fs.h caa456783e read_whole_dir functions hace 1 año
hash.c fbd6499d20 compatibility fixes hace 4 semanas
hash.h caa456783e read_whole_dir functions hace 1 año
heap.c aeb139e7e0 heap improvements hace 1 año
heap.h 39b3db3344 improvements to s-expression parser hace 7 meses
ini.c 9d1eb56746 ini file reader hace 2 años
ini.h 9d1eb56746 ini file reader hace 2 años
initest.ini 9d1eb56746 ini file reader hace 2 años
macros.h 79f6846952 added missing file hace 4 años
matrix.c 2b5abfc46c meh hace 1 año
matrix.h 6badfa1609 fixes and additions to matrix functions hace 1 año
memarena.c a7205d374e bunch of more stuf hace 5 años
memarena.h a7205d374e bunch of more stuf hace 5 años
mempool.c 1566a5afc0 pedantic fixes hace 4 años
mempool.h fbd6499d20 compatibility fixes hace 4 semanas
misc.c 197298b3be bugfix epoch ts helper hace 6 meses
misc.h cb6a6f722e missing system headers hace 3 meses
rb.c 6230a20751 red-black trees hace 4 años
rb.h 04b125e9fe heap structure and basic functions hace 4 años
ring.c 1566a5afc0 pedantic fixes hace 4 años
ring.h e1386d6e03 real path fs helper hace 4 años
rpn.c 55b5b4c665 bug fixes hace 3 años
rpn.h 1566a5afc0 pedantic fixes hace 4 años
sets.c 40243a0b3e fixed uninitialized field hace 2 años
sets.h 4113c0aa2b -fstrict-prototypes compatibility hace 4 años
sexp.c 39b3db3344 improvements to s-expression parser hace 7 meses
sexp.h 39b3db3344 improvements to s-expression parser hace 7 meses
stats.c d683425a27 completely untested stats code hace 4 años
stats.h d683425a27 completely untested stats code hace 4 años
sti.c ba5958df42 base64 decoder hace 1 año
sti.h ba5958df42 base64 decoder hace 1 año
string.c 0d46af308a apparently missing includes in string.c hace 5 meses
string.h cb6a6f722e missing system headers hace 3 meses
string_int.c 21dcd2df95 fixed resize bug in string_int hace 1 año
string_int.h 0e0e2ff2a7 string internment table changes to keep definition hidden hace 2 años
svec.c 3b1f7c8a09 stable vec. not very configurable atm. hace 1 año
svec.h 3b1f7c8a09 stable vec. not very configurable atm. hace 1 año
talloc.c a56a8a925f cleaned up macros in hash.c hace 4 años
talloc.h aed8b7086f a couple string fns for parsing c hace 3 años
test.c f0e141c800 strrchr for utf8 hace 1 año
utf.c 5215f86c4b recursive_glob() hace 1 año
utf.h 7dbda9d2fb much better hash table macros hace 1 año
vec.c fbd6499d20 compatibility fixes hace 4 semanas
vec.h ca39d3cbef VEC_RM macros off-by-one hace 4 meses

README.md

sti

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.

Warning

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.

Features

  • Auto-sizing array/vector<>/"stretchy buffer"
  • Open-addressing hash table
  • Red-black tree
  • Sets
  • Min/max heap
  • Custom memory allocators
    • Memory pool using non-reserved virtual memory maps
    • Arena allocator using non-reserved virtual memory maps
    • talloc (tree allocator; simple wrapper around malloc)
  • S-expression parser
  • Generic, configurable shunting-yard algorithm to RPN
  • Filesystem utlities:
    • List files in directory
    • Walk directories recursively with callback
    • Path manipulation functions
  • String helpers
    • UTF-8/32 versions of [most] of the C std lib.
    • String splitting
  • Basic statitistics calculation
  • Miscellaneous math helpers
  • Miscellaneous Public Domain hash functions
  • Configurable state-machine based lexer generator

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.

TODO

  • Documentation
  • sexp could use some love:
    • Escaped chars string support
    • More api helper fns
    • Named arguments
  • Basic tests for important fns