cutile

cutile is a set of libraries that I use when programming in C: hash table, dynamic array, ini parsing, stack trace generation, etc.


Version 0.2
------------------------------------
Add stacktrace.c, contains utilities to get the stack trace. Works on Windows for the moment.
memory.c: Fix wrong type in init_arena parameters list causing compilation error. Was "u8", should have been "cut_u8".

Version 0.1
------------------------------------
Add array.c, contains utilities to manipulate or examine arrays.
Add dyn_array.c, dynamic array API.
Add file.c, filesystem API.
Add hash_table.c, hash table API.
Add ini.c, ini parsing API.
Add memory.c, API to allocate, deallocate and manipulate memory.
Add print.c, API to print string to the screen: Windows console for the moment.
Add print_str_format.c, connects str_format.c and print.c.
Add str.c, API to create and manipulate strings.
Add str_format.c, API to format given arguments of various types into a string.



Download: