Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save adragomir/2376581 to your computer and use it in GitHub Desktop.
Save adragomir/2376581 to your computer and use it in GitHub Desktop.
The solution to Linus' question on resolving undefined macros in the preprocessor to 0, as well as resolving defined macros to their values.
#include <stdio.h>
#define CONFIG_FOO 1
#define CONFIG_NOO 0
#define is_set(macro) is_set_(macro)
#define macrotest_1 ,
#define is_set_(value) is_set__(macrotest_##value)
#define is_set__(comma) is_set___(comma 1, 0)
#define is_set___(_, v, ...) v
int main()
{
printf("It's %d!\n", is_set(FOO));
if(is_set(CONFIG_FOO))
{
puts("And it's true, yo!");
}
if(is_set(CONFIG_NOO))
{
puts("Noooo!");
}
if(is_set(CONFIG_NOTEXIST))
{
puts("NOT EXIST");
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment