Files
mikpe.pdp10-tools/as/strtab.h
Mikael Pettersson 7c189dd488 Initial import
2013-07-03 16:29:42 +00:00

18 lines
238 B
C

/*
* strtab.h
*/
#ifndef STRTAB_H
#define STRTAB_H
#include "htab.h"
struct strnode {
struct hnode hnode;
char string[];
};
void strtab_init(void);
const struct strnode *strtab_enter(const char *string);
#endif /* STRTAB */