Skip to content

Instantly share code, notes, and snippets.

@denisdemaisbr
Created September 21, 2024 15:03
Show Gist options
  • Save denisdemaisbr/fb8a169159da37c471111a89cca2565d to your computer and use it in GitHub Desktop.
Save denisdemaisbr/fb8a169159da37c471111a89cca2565d to your computer and use it in GitHub Desktop.
c variable macro
...
#define isEmpty(_str, ...) \
if (!_str || _str[0] == 0x0 || strlen(_str) == 0) { \
if (sizeof((int[]){__VA_ARGS__}) > 1) { \
return __VA_ARGS__; \
} else { \
return; \
} \
}
char str[512] = {0};
isEmpty(str);
isEmpty(str, -1);
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment