CC icon indicating copy to clipboard operation
CC copied to clipboard

A small, usability-oriented generic container library.

Results 4 CC issues
Sort by recently updated
recently updated
newest added

Thank you for the cool library and the nice article! Recently, MSVC has finally started to support the *\_\_typeof\_\_* operator (https://learn.microsoft.com/en-us/cpp/c-language/typeof-c?view=msvc-170). It would be good if CC library could be...

close #9 Note that this PR introduces a new typedef cc_max_align_t and a function-like macro CC_UNREACHABLE(). Compiler specific optimizations are also added to cc_first_nonzero_uint16() and cc_last_nonzero_uint16(). By using MSVC 19.39...

For the following program which is faulty (it gives an integer instead of a structure as argument of the map for the insert call), ``` #include #include #include "cc.h" typedef...

Thanks so much for this fascinating code! I am suggesting a function that looks like this: size_t memory_usage( *cntr ); It would return the amount of (heap) memory associated with...

enhancement