#define is nothing but a search and replace from the preprocessor.
I’ve been burned one too many times with #include which replaces the directive with the contents of the included headers file (I think that if you’re truly evil you can even include straight .c files and forgo headers entirely)
fr, I didn’t know dat macros could be used to make nu programming languages.
#define
is nothing but a search and replace from the preprocessor.I’ve been burned one too many times with
#include
which replaces the directive with the contents of the included headers file (I think that if you’re truly evil you can even include straight .c files and forgo headers entirely)