14 lines
198 B
C
14 lines
198 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
|