Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

23 строки
365B

  1. #ifndef VSLC_H
  2. #define VSLC_H
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include <string.h>
  6. #include <stdint.h>
  7. #include <stdbool.h>
  8. #include <stdarg.h>
  9. #include "tlhash.h"
  10. #include "nodetypes.h"
  11. #include "ir.h"
  12. #include "y.tab.h"
  13. int yyerror ( const char *error );
  14. extern int yylineno;
  15. extern int yylex ( void );
  16. extern char yytext[];
  17. extern node_t *root;
  18. #endif