index
:
~wrmr/stdwrm
this commit
master
Unnamed repository; edit this file 'description' to name the repository.
Worm Heamer
summary
refs
log
tree
commit
diff
log msg
author
committer
range
Age
Commit message (
Collapse
)
Author
2025-02-08
wrap multi-line macros in do/while(0) loop
HEAD
master
WormHeamer
turn out just a compound statement { ... } block is insufficient, because it can break if/else statements. do { ... } while(0) turns it into just a normal statement.
2025-02-07
allow user redefinition of SHASH_SLOTS
WormHeamer
2025-02-07
add shash.h, a simple string -> void* hash table
WormHeamer
2025-02-07
rename STDWRM_STR_IMPL to STDWRM_IMPL_STR
WormHeamer
2025-02-06
add strio.h with read_whole_file()
WormHeamer
2025-02-06
use "variadic" args in DA_PUSH to allow for (struct) {x, y, z...}
WormHeamer
2025-02-06
use c23 typeof instead of explicit type parameter
WormHeamer
2025-02-05
add stdwrm.h; fix scatc segfault; slen/sfree string not string*
WormHeamer
2025-02-05
add str.h
WormHeamer
2025-02-05
add DA_PUSH_MULT
WormHeamer
2025-02-05
change dynarr.h to have array headers be a prefix behind them
WormHeamer
this allows you to just index dynamic arrays like static ones!
2025-02-05
initial commit; add dynarr.h
WormHeamer