19 * changes cx_str() and cx_mutstr() to allow NULL strings |
19 * changes cx_str() and cx_mutstr() to allow NULL strings |
20 * changes cx_strcast() to also accept C-strings as input |
20 * changes cx_strcast() to also accept C-strings as input |
21 * changes grow strategy for the mempory pool to reduce reallocations |
21 * changes grow strategy for the mempory pool to reduce reallocations |
22 * changes grow strategy for CxBuffer, which does now take the page size into account |
22 * changes grow strategy for CxBuffer, which does now take the page size into account |
23 * changes the implementation of cx_strreplacen() for improved efficiency |
23 * changes the implementation of cx_strreplacen() for improved efficiency |
24 * changes all cxListIterator() without index to also accept NULL as list argument |
24 * changes all cxListIterator() and cxMapIterator() family of functions to also accept NULL as argument |
25 * changes insert_element member function of CxList to accept NULL source and return a pointer to the inserted element |
25 * changes insert_element member function of CxList to accept NULL source and return a pointer to the inserted element |
26 * fixes critical memory overflow in the stack-based array reallocator (this unfortunately breaks the function signature) |
26 * fixes critical memory overflow in the stack-based array reallocator (this unfortunately breaks the function signature) |
27 * fixes mempool implementation not supporting NULL as argument for realloc |
27 * fixes mempool implementation not supporting NULL as argument for realloc |
28 * fixes mempool implementation not supporting zero as size for realloc |
28 * fixes mempool implementation not supporting zero as size for realloc |
29 * fixes that starting an iteration in a non-root node incorrectly continues iteration with the siblings of that node |
29 * fixes that starting an iteration in a non-root node incorrectly continues iteration with the siblings of that node |