summaryrefslogtreecommitdiffhomepage
path: root/stc
AgeCommit message (Expand)Author
2020-12-02Added carray docs.Tyge Løvset
2020-12-01Added some examples.Tyge Løvset
2020-12-01Added numbers before functions in cstr docs.Tyge Løvset
2020-12-01More docs update. Renamed cvec_insert|erase_p() to cvec_insert|erase_ptr().Tyge Løvset
2020-12-01Fixed docs, some minor changes in cstr.h and cmap.h as well.Tyge Løvset
2020-11-30Added cmap api docs.Tyge Løvset
2020-11-30Added clist docs, updated cbitset.h and docs.Tyge Løvset
2020-11-27Docs and minor update of cstr.hTyge Løvset
2020-11-27Added and renamed case insensitive search functions.Tyge Løvset
2020-11-26Added link to beginning of cstr API documentation, and some small docu fixes.Tyge Løvset
2020-11-26Now removed stc/cfmt.hTyge Løvset
2020-11-26Removed stc/cfmt.h, as _Generic requires C11. I have made it a gist: https://...Tyge Løvset
2020-11-24Forgot #include <ctype.h> required by tolower().Tyge Løvset
2020-11-24Added case insensitive compare: c_strcasecmp(), cstr_casecmp(), cstr_equals_c...Tyge Løvset
2020-11-24Fixed return value from cstr_find_n(), and added cstr_length() alias to cstr_...Tyge Løvset
2020-11-22Fixed cstr_find_n(). Renamed cstr_NPOS to cstr_npos.Tyge Løvset
2020-11-16Small update of the new cstr methods.Tyge Løvset
2020-11-16Added cstr_contains(), cstr_begins_with(), cstr_ends_with(), and changed cstr...Tyge Løvset
2020-11-10Refactored cstr_fmt().Tyge Løvset
2020-11-07Last fix on getdelim().Tyge Løvset
2020-11-07Another fix of cstr_getdelim()Tyge Løvset
2020-11-07Fix bug in cstr_reserve, discovered in cstr_getdelim().Tyge Løvset
2020-11-06Two minor fixes.Tyge Løvset
2020-11-04Larger constant Phi in hash16.Tyge Løvset
2020-11-03Small API change c_withbuffer() and doc fix.Tyge Løvset
2020-11-03renamed __init to _initsTyge Løvset
2020-11-02Changed (half)-internal *_INIT to *__init macros. Minor reformatting.Tyge Løvset
2020-10-27Fixed final minor error.Tyge Løvset
2020-10-27Improved error, and code reduction.Tyge Løvset
2020-10-26Updates examples using cfmt.h c_print().Tyge Løvset
2020-10-26Final fix.Tyge Løvset
2020-10-26Another minor.Tyge Løvset
2020-10-26Minor.Tyge Løvset
2020-10-26Removed differencing between float/double. Cleaner.Tyge Løvset
2020-10-26Support for differenting between float and double. Messy-Tyge Løvset
2020-10-25Changed stdout to have alias 1 instead of 0, and stderr=2.Tyge Løvset
2020-10-24Renamed c_printf() to c_print() because it no longer support of printf() form...Tyge Løvset
2020-10-24Added in-code documentation cfmt.hTyge Løvset
2020-10-24Make sure returned buf is null terminated on unseuccessful strftime.Tyge Løvset
2020-10-24% no longer needed to be 'escaped' with %. now behaves as any chars.Tyge Løvset
2020-10-24More robust way.Tyge Løvset
2020-10-24Minor fix to c_timef() feature.Tyge Løvset
2020-10-24Added c_timef(fmt, tm) macro - a convenience strftime()-wrapper function to b...Tyge Løvset
2020-10-23Fix1: Added _Bool. Fix2: Handle '*' flag in format. 3: Removed support for %-...Tyge Løvset
2020-10-23Fix/reverted to use continue in parser.Tyge Løvset
2020-10-22Improved error messages for c_printf().Tyge Løvset
2020-10-22A minor fix.Tyge Løvset
2020-10-22Removed debug statement.Tyge Løvset
2020-10-22Added support for %t (can have flags: %10t) as alternative to {} in c_printf(...Tyge Løvset
2020-10-21Reverted to print chars as chars not numbers. signed char will show as char o...Tyge Løvset