| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-09-05 | Swapped two parameters in newly renamed "internal" function stc_strnstrn(). | Tyge Løvset | |
| 2023-09-05 | Renamed (half)internal functions: | Tyge Løvset | |
| cfasthash() => stc_hash() cstrhash() => stc_strhash() cnextpow2() => stc_nextpow2() | |||
| 2023-09-05 | Renamed (half) internal function cfasthash() => cbytehash(). | Tyge Løvset | |
| Fixed missing parameter in call of i_hash(). | |||
| 2023-08-17 | Simplified access to utf8 character .chr in cstr / csview / crawstr ↵ | tylov | |
| iterators. Backward compatibility kept, but deprecated. | |||
| 2023-08-17 | Renamed "internal" csview member .str => .buf, as it is not null terminated ↵ | Tyge Lovset | |
| like crawstr .str member. | |||
| 2023-08-14 | Reverted csubstr => csview. Sorry about that! | Tyge Løvset | |
| Added crawstr to become the null-terminated string view. | |||
| 2023-08-14 | Finished last commit (cleanup, fixes). | tylov | |
| 2023-08-13 | API CHANGES: | tylov | |
| Changed csview: becomes a null-terminated string view. Added csubview: a null-terminated string view/span, like previous csview. Note that csview works like a csubview, so not much compability issues should arise. However, some functions have changed from _sv suffix to _ss. | |||
| 2023-08-13 | Removed csview_null - use csview_init(). | tylov | |
| 2023-07-10 | - Fixed meta-programming bug in carc and cbox hash function def (regression). | tylov | |
| - Reverted to allow static linking of cstr and csview. Still defaults to shared linking + inlines. | |||
| 2023-06-29 | Usage change: comparison is no longer enabled when specifying i_val for ↵ | Tyge Lovset | |
| cvec, cdeq and clist (like cstack and cqueue). Comparison functions are still required when specifying i_valclass. For fundamental/native types like integers, floats etc., define i_native_cmp along with i_val instead of i_less/i_cmp/i_eq. | |||
| 2023-06-13 | Added cco_closue(Ret, Closure) to define coroutine closure. | Tyge Løvset | |
| Added back cco_await_on(child) calls. | |||
| 2023-06-11 | Added priv/linkage.h and renamed priv/template2.h => priv/template_undef.h. | Tyge Løvset | |
| Make all examples c++ compatible, except those using cspan.h Removed: crange_obj() Renamed: crange_make() => crange_init() Renamed: cspan_make() => cspan_init() Renamed: cstr_NULL => cstr_null Renamed: csview_NULL => csview_null | |||
| 2023-06-11 | More internal structuring | Tyge Løvset | |
| 2023-06-09 | Rename i_extern template flag to i_import. i_extern still available, but ↵ | Tyge Løvset | |
| deprecated. | |||
| 2023-06-09 | Fixed issues with linking params i_implement, i_extern. | Tyge Løvset | |
| 2023-05-24 | More coro adjustments. | Tyge Løvset | |
| 2023-05-21 | NB! Made cstr.h header-only by default. Now requires #define i_static, ↵ | Tyge Lovset | |
| i_implement or i_extern (includes utf8code.c) to implement non-inline functions (or link with libstc). | |||
| 2023-02-13 | Removed support for uppercase version of c_sv() (i.e c_SV => c_sv). | Tyge Løvset | |
| Renamed c_ARGSV => c_SV. Old name is still working. | |||
| 2023-02-08 | Changed to use lowercase flow-control macros in examples (uppercase will ↵ | Tyge Løvset | |
| still be supported). Improved many examples to use c_make() to init containers. | |||
| 2023-02-05 | Some last minute changes: reverted mostly the c_extern from last commit. | Tyge Løvset | |
| Renamed c_ARGSV(sv) macro to c_SVARG(sv). Both available. | |||
| 2023-02-05 | Fixed linking parameters i_extern. | Tyge Løvset | |
| 2023-01-31 | Converted all containers but the maps and examples to signed sizes and indices. | Tyge Løvset | |
| 2023-01-27 | (Reverted) c_COMPOUND() to c_LITERAL(). | Tyge Løvset | |
| 2023-01-23 | Changed c_OVERLOADMACRO() internally. | Tyge Løvset | |
| 2023-01-19 | Finish last commit. Most safe function macros are now preferred lowercase, ↵ | Tyge Løvset | |
| whereas flow control macros (c_FOREACH, ..) are preferred uppercase. | |||
| 2023-01-04 | Bump to 2023 | Tyge Løvset | |
| 2022-12-31 | Internally renamed ccommon.h macros to uppercase. Lowercase macros are still ↵ | Tyge Løvset | |
| supported via include/stc/priv/lowcase.h. | |||
| 2022-12-20 | Renamed c_sv() => c_SV() and reverted cstr_new() => cstr_lit(). Old names ↵ | Tyge Løvset | |
| are deprecated (not removed). | |||
| 2022-12-19 | Renames: | Tyge Løvset | |
| cstr_null => cstr_NULL csview_null => csview_NULL cstr_npos => c_NPOS csview_npos => c_NPOS c_ARGsv(sv) => c_ARGSV(sv) c_init(x) => c_INIT(x) | |||
| 2022-12-04 | Support for linking dependant UTF8 and cstr functions and/or cregex.c by ↵ | Tyge Løvset | |
| defining i_extern before including <stc/cstr.h> and <stc/cregex.h>. I.e. #define i_extern #define i_implement // define cstr functions as shared symbols (static if not defined). #include <stc/cregex.h> // include cstr.h, utf8code.c, cregex.c, unless already included. | |||
| 2022-11-22 | Fixes of -Wconversion warnings (not examples). | Tyge Løvset | |
| 2022-11-21 | Updated shootout_hashmap.cpp, and fixed some unsigned warnings. | Tyge Løvset | |
| 2022-11-13 | Simplified csview API and usage. Fixed c++ compilation of csmap. | Tyge Løvset | |
| 2022-10-28 | Renamed some semi-internal functions which appeared to be macros by their name. | Tyge Løvset | |
| 2022-10-28 | Renamed semi-internal macro (used for c++ compability) c_make => c_init. | Tyge Løvset | |
| 2022-10-04 | - Removed deprecated c_forrange() (replaced by c_forloop + crange type) | Tyge Løvset | |
| - Removed csview_new(literal) macro. Use c_sv(literal) instead. - Added stc/views.h: moved crange from ccommon.h and added templated type c_listview. Instantiate by: using_listview(ViewName, ValueType) after #include, does not use #define i_val .... See examples in views.h. | |||
| 2022-09-25 | Added: crange number generator type. (similar to c++ std::iota). Fixed ↵ | Tyge Løvset | |
| c_forfilter again. Cleanups. Docs added. | |||
| 2022-09-24 | Fixes for csview and cstr sub-types (_value and _iter). | Tyge Løvset | |
| 2022-09-22 | Updated _advance() iter methods. Some have signed offsets. | Tyge Løvset | |
| utf8_peek()/utf8_peek_off() added/changed. | |||
| 2022-09-21 | Added cstr_push(), cstr_pop() - push/pop one utf8 char. | Tyge Løvset | |
| Renamed c_forpred() to c_forloop() - used by c_forfiltered(). | |||
| 2022-09-21 | Recent macro renames: | Tyge Løvset | |
| c_foreach_token() => c_fortoken() c_foreach_match() => c_formatch() Added: c_forfiltered() c_forpred() | |||
| 2022-09-07 | Internal. | Tyge Lovset | |
| 2022-09-06 | Updated docs for cregex and csview. | Tyge Lovset | |
| 2022-09-06 | - Added c_foreach_token(it, ...) macro in csview.h. | Tyge Løvset | |
| - Changed c_foreach_match(it, ...): to access matches, use it.match[j] - splitstr.c now shows usages of both the above. | |||
| 2022-08-18 | Some API updates cstr, csview with utf8. Added front()/back() to cstack. | Tyge Lovset | |
| 2022-08-11 | Minor formatting. | Tyge Lovset | |
| 2022-08-11 | Renamed all iter members ._end to .end, to make them "public". | Tyge Lovset | |
| 2022-08-10 | Fixed iters for carr2/carr3 and cstr/csview. | Tyge Løvset | |
| 2022-08-09 | Experiment with other type of iterator. Does not compile. | Tyge Løvset | |
