you are viewing a single comment's thread
view the rest of the comments
[–] 23 points 3 years ago (1 child)

fr, I didn't know dat macros could be used to make nu programming languages.

  • source
  • hideshow 1 child comment
  • [–] 9 points 3 years ago

    #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)

  • source
  • parent