avdl_parser.h 183 B

12345678910
  1. #ifndef _LANG_PARSER_H_
  2. #define _LANG_PARSER_H_
  3. #include "avdl_ast_node.h"
  4. // transpile ast_node tree to file
  5. int transpile_cglut(const char *filename, struct ast_node *n);
  6. #endif