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
path:
root
/
dynarr.h
Age
Commit message (
Collapse
)
Author
2025-02-28
don't include stdwrm.h by default
WormHeamer
2025-02-28
Merge remote-tracking branch 'refs/remotes/origin/master'
WormHeamer
2025-02-27
use fprintf() + abort() instead of err()
WormHeamer
2025-02-10
apply stdwrm__ prefix to vars; only evaluate DA_FIT count once
WormHeamer
2025-02-10
add DA_INIT_SIZE
WormHeamer
2025-02-08
wrap multi-line macros in do/while(0) loop
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-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 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