Skip to content

Instantly share code, notes, and snippets.

@Swoorup
Created September 14, 2015 06:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Swoorup/85a9214d0477146c0d63 to your computer and use it in GitHub Desktop.
Save Swoorup/85a9214d0477146c0d63 to your computer and use it in GitHub Desktop.
ASTreeNode
typedef struct ASTreeNode
{
int type;
char* szData;
struct ASTreeNode* left;
struct ASTreeNode* right;
} ASTreeNode;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment