Skip to content

Instantly share code, notes, and snippets.

@johnf
Created June 20, 2011 03:10
Show Gist options
  • Save johnf/1035063 to your computer and use it in GitHub Desktop.
Save johnf/1035063 to your computer and use it in GitHub Desktop.
// A
enum _foo_type {
FOO
};
typedef enum _foo_type foo_type;
// B
typedef enum {
BAR
} bar_type;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment