Skip to content

Instantly share code, notes, and snippets.

@vinjn
Created September 5, 2012 03:12
Show Gist options
  • Save vinjn/3629716 to your computer and use it in GitHub Desktop.
Save vinjn/3629716 to your computer and use it in GitHub Desktop.
Macro for run once
#define BLOCK_RUNONCE_START {\
static bool runonce_first = true;\
if (runonce_first)\
{\
runonce_first = false;
#define BLOCK_RUNONCE_END }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment