Tokenize typedef enum #14
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
typedef enum
{
GTK_WINDOW_TOPLEVEL,
GTK_WINDOW_POPUP
} GtkWindowType;
Should read as follows:
TOKEN_TYPEDEF_ENUM typedef enum
TOKEN_LBRACE {
TOKEN_ENUM GTK_WINDOW_TOPLEVEL,
TOKEN_ENUM GTK_WINDOW_POPUP
TOKEN_RBRACE }
TOKEN_ALIAS GtkWindowType;
Typedef enum almost there. Needs some minor refinements.