Skip to content

Instantly share code, notes, and snippets.

@ifukazoo
Created April 3, 2013 13:29
Show Gist options
  • Save ifukazoo/5301218 to your computer and use it in GitHub Desktop.
Save ifukazoo/5301218 to your computer and use it in GitHub Desktop.
enumの便利な使い方
int main(int argc, char const* argv[])
{
enum { INIT, CONFIRM, SUCCESS, FAILURE } state;
if (argc < 2) {
state = FAILURE;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment