shithub: semblance

ref: c1cebeee3da60bac9fdde3d8b2caac29c27ef912
dir: /fns.h/

View raw version
/* alloc */
void *emalloc(ulong);
void *erealloc(void*, ulong);
char *estrdup(char*);

/* sym */
Symbol *declsym(char*, int, ...);
Symbol *getsym(char*);
void printsymtab(void);

/* builtin */
int lookupkw(char*);
int opstart(int);
int findop(char*);
int vartype(int);
int optype(int);
void initsyms(void);
char *gettokenname(int);
void printtoken(Token*);

/* lexer */
int lex(Lexer*);
int peek(Lexer*);
int expect(Lexer*, int);
int expectany(Lexer*, ...);
int gotany(Lexer*, ...);
int gottype(Lexer*);