Created
September 14, 2015 06:55
-
-
Save Swoorup/85a9214d0477146c0d63 to your computer and use it in GitHub Desktop.
ASTreeNode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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