quasar32
Results
2
issues of
quasar32
Use `_Generic` to create macros that allow for brevity and the creation of length generic code. Example: #define glms_add(a, b) _Generic((a), \ vec2s: glms_vec2_add, \ vec3s: glms_vec3_add, \ vec4s: glms_vec4_add...
feedback wanted
Currently the unicode decoding routines are only well behaved for well-formed code points. Ill formed code points can not only cause functions like `utf8_decode` in `utf8.c` to access bytes beyond...