school

thing1's amazing school repo
Log | Files | Refs | Submodules | README

tokenizer.h (127B)


      1 typedef struct astNode {
      2 	char *func;
      3 	char *args[8];
      4 	struct astNode *children[8];
      5 } astNode;
      6 
      7 astNode *tokenize(char *line);