stclib / STC

A modern, user friendly, generic, type-safe and fast C99 container library: String, Vector, Sorted and Unordered Map and Set, Deque, Forward List, Smart Pointers, Bitset and Random numbers.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

About c standard

alex-rass-88 opened this issue · comments

cfmt uses _Generic. This is C11 standard. In compilers without c11 support, the application will not build.

Thanks for reminding me. cfmt.h is an independent functionality only requires a few macros from ccommon.h. Will move it out of the lib and revert examples.

cfmt.h is now taken out of the library and moved to a gist: https://gist.github.com/tylov/bcc956a4779f1d14204e66a14f17beb9

All examples are reverted/updated to use printf() instead.