summaryrefslogtreecommitdiffhomepage
path: root/docs/cstr_api.md
AgeCommit message (Expand)Author
2022-06-01Merge branch 'master' of github.com:tylov/STCTyge Løvset
2022-06-01Update docs regarding i_implement for cstr, cview, cbits, ...Tyge Løvset
2022-06-01Update cstr_api.mdTyge Løvset
2022-06-01Added some docs on utf8. API may change for cstr: to take const cstr* args in...Tyge Løvset
2022-05-30Updated cstr utf8 docs.Tyge Løvset
2022-05-29Renamed cstr_replace_first() => cstr_replace_one().Tyge Lovset
2022-05-23Renamed cstr_find_n(self, search, pos, nmax) => cstr_find_from(self, pos, sea...Tyge Løvset
2022-05-20Removed cstr_from_replace_all_sv(), Added cstr_replace_first(). Renamed argum...Tyge Løvset
2022-05-13Added cstr_assign_s(), and changed return type to char* for cstr_assign*() an...Tyge Løvset
2022-05-10Renamed (newish) functions expand_uninitialized to expand_uninit. + some mino...Tyge Lovset
2022-05-06Made cstr_buffer() func. public, and docs for cstr_sv() - convert to csview.Tyge Lovset
2022-04-27Added cstr_expand_uninitialized().Tyge Løvset
2022-04-25Removed size argument to `i_hash` template parameter and `c_default_hash`. Th...Tyge Løvset
2022-04-24Updated docs to use cstr_str(&s) instead of s.strTyge Løvset
2022-04-24Created VERSION 3.5. See News section in docs for changes.Tyge Løvset
2022-03-04Updated printf formatting to portable code. This was also to use http://winli...Tyge Løvset
2022-01-14Removed cstr iter; => csview iter is now utf8 iter. See utf8.h example.Tyge Løvset
2022-01-05Added docs on checkauto util program. Renamed (mainly internal) c_rawstr type...Tyge Løvset
2021-12-19Global rename of `_equ\b` => `_eq`. In practice `i_equ` must renamed to `i_eq...Tyge Løvset
2021-12-19First commit for Version 3 of STC. Main changes are consistent rename of '_de...Tyge Løvset
2021-12-14cstr_printf() now returns int like printf(). Minor updates in sharedptr.c exa...Tyge Løvset
2021-12-13Renamed constructor *cstr_lit()* to `cstr_new(lit)`.Tyge Løvset
2021-10-29Swapped .._equals() and _equalto() functions for consistencyTyge Løvset
2021-10-29Renamed ..._value_t -> ..._value, etc. Deprecated, still works for cvec, cdeq...Tyge Løvset
2021-09-19Fixed errors caused by gcc -std=c99 -pedantic.Tyge Løvset
2021-09-13Removed most of the case-insensitive cstr methods, as they won't work with ut...Tyge Løvset
2021-08-29Replaced cstr_toraw (deprecated) with cstr_str used to convert from cstr to c...Tyge Lovset
2021-08-28Breaking change cstr and csview renames in order to improve consistency:Tyge Løvset
2021-08-19Maintenance update. Added stc32_rand() to crandom.h, doc fixes and cqueue.h u...Tyge Løvset
2021-07-05Some small updates.Tyge Løvset
2021-06-18Simplified and removed unneeded stuff from csview.hTyge Løvset
2021-06-15Fixed c_strnstrn() and cstr_find_n() bugs. when find string is empty.Tyge Løvset
2021-06-10Renamed cstr/csview begin_with() to starts_with() : following c++ std namings.Tyge Løvset
2021-05-27Made substr() and slice() only returning csview. Added Both cstr and csview i...Tyge Løvset
2021-05-26Removed cstr_trim, csview_trim, Changed cstr_substr to mutable. Allow negativ...Tyge Løvset
2021-05-25Replaced csview cstr_trimmed(cstr s, left, right) with: cstr* cstr_trim(cstr*...Tyge Løvset
2021-05-25Fixed Issue #6.Tyge Løvset
2021-05-21Added substr() and cleanup of trimmed() API.Tyge Løvset
2021-05-20Updated links to header files in docs.Tyge Løvset
2021-05-20Changed new API: c_sv(literal) => c_sv(cstr), cstr_new(literal) => cstr_lit(l...Tyge Løvset
2021-05-18Internal updates in cstr. Minor API change in carray carrayNX_with_value() =>...Tyge Løvset
2021-05-13Updated cstr: Added cstr_new(literal), Renamed cstr_assign_s() to cstr_copy()...Tyge Løvset
2021-05-11Removed cstr_append_fmt(): use cstr_assign_fmt(&s, "%s%s", s.str, "appended s...Tyge Løvset
2021-05-10Some c_rawstr_*() functions were not updated in documentation.Tyge Løvset
2021-05-10cstr: Added cstr_replace_all(), cstr_append_fmt(). Renamed cstr_fmt() to cstr...Tyge Løvset
2021-05-07Cleanup, internal renames. API: c_strhash() -> c_string_hash(), added adv() a...Tyge Løvset
2021-04-16Fixed bug: cmap_erase_it() return iterator. Fixed mem-leak in cdeq_X_insert()...Tyge Løvset
2021-04-08Big change set to simplify the internal templating implementations. Shorter a...Tyge Løvset
2021-03-24Cleanup in documentation.Tyge Løvset
2021-03-19Added clear() to cpque, cstack, cqueue, cbits, even though not in STL. Code/d...Tyge Løvset