tinycpp icon indicating copy to clipboard operation
tinycpp copied to clipboard

small embeddable C-style preprocessor

Results 6 tinycpp issues
Sort by recently updated
recently updated
newest added

(cherry picked from commit 9d3ebe3837c66c2e22a1182ec3a8d35bca5fcbab) I needed file-relative includes via `#include "..."` to work for my application, so I worked out a way of doing this. Hope this may be...

tinycpp has standard MIT license terms, but uses three header files from libulz, which is available under LGPL license. It appears to be true that from libulz headers, tinycpp >...

(cherry picked from commit e7cb2ed116ad7747bef8cebc2c4acc40be7a8dfa) On macOS 13.3.1(a) [arm64], I was hitting a crash due to `freopen_r()` returning null during expansion of empty macros, e.g. ``` #define EXTRA_LONG ``` I...

test.h: ```C "PARAM1" is PARAM1 "PARAM2" is PARAM2 #ifdef DEBUG debug #endif normal ``` `cpp -DPARAM1=p1val test.h -DPARAM2=p2val -DDEBUG` : ``` # (snip) "PARAM1" is p1val "PARAM2" is p2val debug...