summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2022-08-11Completed support for i_less().Tyge Løvset
2022-08-11removed fn.Tyge Løvset
2022-08-11cvec/cdeq insert/erase ranges fixes.Tyge Løvset
2022-08-11Minor formatting.Tyge Lovset
2022-08-11Renamed all iter members ._end to .end, to make them "public".Tyge Lovset
2022-08-11API Change cvec/cdeq: Return iter from all range operations instead of pointers.Tyge Lovset
2022-08-11Code formatting only.Tyge Lovset
2022-08-10Simplified c_foreach macro.Tyge Løvset
2022-08-10Fixed iters for carr2/carr3 and cstr/csview.Tyge Løvset
2022-08-10Fixed cdeq_begin(). Optimized c_foreach: only use one iter.Tyge Løvset
2022-08-10Fixed cdeq, cvec, cmap and cstack: iterators .ref is now NULL when it is ↵Tyge Løvset
end(). clist and csmap/cset already has this property.
2022-08-09Experiment with other type of iterator. Does not compile.Tyge Løvset
2022-08-09Update README.mdTyge Løvset
2022-08-09Small API change for V4.0:Tyge Løvset
Renamed cregex_find_p() => cregex_find_pt() // pattern Renamed cregex_replace_p() => cregex_replace_pt() // pattern
2022-08-09Internal stuff.Tyge Løvset
2022-08-09Two more fixes on csview comparison.Tyge Løvset
2022-08-08docs fix.Tyge Løvset
2022-08-08Final fix on icmp().Tyge Løvset
2022-08-08Changed cstr_icmp_n() to cstr_icmp_sv(), and FIXED it.Tyge Løvset
2022-08-08Updated alt/cstr.h to be in sync with cstr.hTyge Løvset
2022-08-08Fix docs syntax error.Tyge Løvset
2022-08-08Finalized toupper/tolower.Tyge Løvset
2022-08-08Changed *cstr_tolower*/*cstr_toupper* arg from `const cstr*` to `csview`.Tyge Løvset
2022-08-08Fixed const mistake.Tyge Løvset
2022-08-08Reverted a minor change in template.hTyge Løvset
2022-08-08Improved carc example in docs.Tyge Løvset
2022-08-08Reverted `{{` to `{ {` in documentation as markdown treats it special.Tyge Løvset
2022-08-08Merge pull request #32 from tylov/v4_devTyge Løvset
V4.0 BETA
2022-08-08Prepared v4.0 BETA.Tyge Løvset
2022-08-07Refined template.h when specifying i_key_bind (and i_val_bind): i_keyclone ↵Tyge Løvset
becomes defined `c_derived_keyclone` when i_keyfrom is defined, i.e. you don't have to define both, but you can. Improved cmap docs.
2022-08-07Internal: moved some functions in csview/cstr to implementation sections.Tyge Løvset
2022-08-06c_apply() deprecated: replaced with c_forarray() macro. Updated and improved ↵Tyge Løvset
README.md docs.
2022-08-05Removed c_apply() in README.mdTyge Løvset
2022-08-05Reduce usage of c_apply() macro.Tyge Løvset
2022-08-02Removed mflags parameter in cregex_is_match(input, re).Tyge Løvset
2022-08-02Updated cregex docs.Tyge Løvset
2022-08-02Improved the cregex_iter type and c_foreach_match() macro.Tyge Løvset
2022-08-02Changed c_foreach_match (m, re, input) to take pointer: cregex* re.Tyge Løvset
2022-08-01fixed up last commitTyge Løvset
2022-08-01start dev on v4, mainly improving APITyge Løvset
2022-07-31Changed cmap struct internal rep. so that load-factor is first: useful for ↵Tyge Løvset
global initialization of maps. This changes ABI, but so far STC has no stable ABI guarantees.
2022-07-31VERSION 3.9: API change in c_forrange() with >= 3 args. csview updates.Tyge Løvset
2022-07-31csview: csview_token(sv, sep, &start): now start > sv.size on last token. ↵Tyge Løvset
Removed usage of c_ARGsv() macro in examples => printf formatting ".*s". csview fully inlined.
2022-07-30Added support for more than 9 capture group replacements, e.g. "$12;". Added ↵Tyge Løvset
an inline function cregex_find_sv().
2022-07-28Some minor cregex documentation fixes.Tyge Løvset
2022-07-28VERSION 3.8 RC. Added cregex with "final" API + docs. README.md updated with ↵Tyge Løvset
links to cregex, coption. crandom.h: fixed "stc64_with_seq doesn't use seq argument #31" thanks to funny-falcon. Removed deprecated funcs. Added tags for v3.6 and v3.7.
2022-07-28Added back coption.h and coption_api.md docs.Tyge Løvset
2022-07-28Simplified cbits.h to only use inline function. Commonly used functions are ↵Tyge Løvset
small.
2022-07-27VERSION 3.8 BETA: Some changes in cstr / csview APIs: replace* / find*, ↵Tyge Løvset
*_u8(). . See README.md
2022-07-23Fixed a few small issues with cregex.c Reverted cregex_match() to ↵Tyge Løvset
cregex_find(). Renamed cre_* flags.