| Age | Commit message (Expand) | Author |
| 2022-06-01 | Added src/libstc.c which implements all non-templated functions (e.g. from cs... | Tyge Løvset |
| 2022-05-29 | Internal: Changed using i_keyraw to using _cx_raw or _cx_rawkey typedefs: avo... | Tyge Lovset |
| 2022-05-13 | constness and code formatting. | Tyge Lovset |
| 2022-05-05 | Added type-checked c_container_of() macro using typeof (C23, gcc, clang, tcc)... | Tyge Løvset |
| 2022-05-03 | Minor adjustments to previous commit. | Tyge Løvset |
| 2022-05-03 | Added push front/back of existing nodes. | Tyge Løvset |
| 2022-05-02 | Fix linkage issue with clist_X_count(). | Tyge Løvset |
| 2022-04-28 | _i_implement moved to user-level template parameter as i_implement. Removed i... | Tyge Løvset |
| 2022-04-22 | Readded push()/emplace() to all containers missing them. Made _hash function ... | Tyge Løvset |
| 2022-04-21 | Switched to use i_key as primary template type parameter for all containers. ... | Tyge Løvset |
| 2022-04-20 | Support for cloning containers with carc and cbox. | Tyge Lovset |
| 2022-04-18 | Renamed stc64_random() => crandom(), stc64_srandom(seed) => csrandom(seed). K... | Tyge Løvset |
| 2022-04-15 | Adding comment to #endif's. | Tyge Løvset |
| 2022-04-15 | Merge branch 'master' of github.com:tylov/STC | Tyge Løvset |
| 2022-04-15 | Updated README.md docs on template args! Reverted to put() as alias for inser... | Tyge Løvset |
| 2022-04-11 | Fixed an potential issue with c_eq in template.h and missing usage in clist.h | Tyge Lovset |
| 2022-04-11 | Added important parenthesizes around macro expressions. | Tyge Løvset |
| 2022-04-10 | Parenthesized args in calls to i_keyfrom(c), i_keyto(p) i_valfrom(c), i_valto... | Tyge Løvset |
| 2022-04-10 | Parenthesized args in calls to i_cmp(x, y), i_eq(x, y) and i_hash(x, len) - c... | Tyge Løvset |
| 2022-04-10 | Parenthesized calls to i_drop(x) - can be defined as macro without parenthesi... | Tyge Løvset |
| 2022-04-09 | - Switched from .._put() to .._push() as the "generic" method to add element... | Tyge Løvset |
| 2022-04-09 | Universally added a put() function to all containers. | Tyge Løvset |
| 2022-04-07 | Partly reverted (auto defined _i_no_emplace): emplace functions only availabl... | Tyge Løvset |
| 2022-04-02 | Internal refactoring/macro rename. | Tyge Lovset |
| 2022-04-01 | Simplified internal logic on enabling default cloning | Tyge Løvset |
| 2022-01-16 | Made private functions (not called by header inlines) always static. Added re... | Tyge Løvset |
| 2022-01-03 | Bump to 2022. | Tyge Løvset |
| 2022-01-03 | "gcc/clang -O2 -Wall -std=c99 -pedantic" compiles examples with no warnings. ... | Tyge Løvset |
| 2022-01-02 | Simplified and improved linkage configuration. Reorganized crandom.h a bit. | Tyge Løvset |
| 2022-01-01 | Corrected linking macro settings. | Tyge Løvset |
| 2021-12-23 | Removed emplace functions if not i_valraw or i_keyraw is defined. Safety/opti... | Tyge Løvset |
| 2021-12-22 | Renamed '_rawvalue\b' to '_raw' | Tyge Løvset |
| 2021-12-19 | First commit for Version 3 of STC. Main changes are consistent rename of '_de... | Tyge Løvset |
| 2021-12-12 | - Added **cbox** type: container of one element: similar to std::unique_ptr /... | Tyge Løvset |
| 2021-12-02 | Breaking changes for i_fwd and i_cmp_none: | Tyge Løvset |
| 2021-11-24 | Deprecated c_no_compare(). Define i_cmp_none instead when you have/want no el... | Tyge Løvset |
| 2021-11-21 | BREAKING CHANGE: Replaced c_new(T) with c_new(T, ...). This now is similar to... | Tyge Løvset |
| 2021-11-03 | Renamed cnt_X_getmut() to cnt_X_get_mut(). | Tyge Lovset |
| 2021-11-03 | Update container_X_getmut() for mutable version. | Tyge Løvset |
| 2021-11-03 | Changed container_X_get() and container_X_at() to return const value* (or con... | Tyge Løvset |
| 2021-10-30 | Fixed docs alignments. | Tyge Løvset |
| 2021-10-29 | Renamed ..._value_t -> ..._value, etc. Deprecated, still works for cvec, cdeq... | Tyge Løvset |
| 2021-10-29 | renamed _cx_..._t to _cx_... | Tyge Løvset |
| 2021-10-29 | renamed cx_..._t to _cx_..._t, and Self to _cx_self | Tyge Løvset |
| 2021-10-18 | Fixed clist.h example in header | Tyge Løvset |
| 2021-10-02 | Moved ref member in clist_X_iter_t to start of struct; | Tyge Løvset |
| 2021-09-23 | Cleanup: Replaced c_emplace() macro with more general c_apply()/c_apply_pair(... | Tyge Løvset |
| 2021-09-21 | Added copy(self, other) function to all containers. Fixed some docs. | Tyge Løvset |
| 2021-09-20 | Renamed macros: breaking changes for Version 2.0! | Tyge Lovset |
| 2021-09-18 | Changed the sharedptr.c example. Removed clist_X_erase(): was alias of clist_... | Tyge Løvset |