Cloak icon indicating copy to clipboard operation
Cloak copied to clipboard

A mini-preprocessor library to demostrate the recursive capabilites of the preprocessor

Results 12 Cloak issues
Sort by recently updated
recently updated
newest added

It seems to necessary to specify that the code to enable recursive macro expansion is not conforming to the C Standard. `FOREVER_INDIRECT` in [the wiki page](https://github.com/pfultz2/Cloak/wiki/Is-the-C-preprocessor-Turing-complete%3F) is defined not to...

I am using the WIKI article, to write some cpp code. I found that ``` bash #define WHILE(pred, op, ...) \ IF(pred(__VA_ARGS__)) \ ( \ OBSTRUCT(WHILE_INDIRECT) () \ ( \...