acc/include/symbol.h
szdytom 121c37c16a main function(AST)
Signed-off-by: szdytom <szdytom@163.com>
2023-06-12 16:02:43 +08:00

16 lines
204 B
C

/*
#ifndef ACC_SYMBOL_H
#define ACC_SYMBOL_H
#include "util/array.h"
extern struct array Gsym;
void symbol_init(void);
void symbol_unload(void);
int findglob(char *s);
int addglob(char *s);
#endif
*/