mirror of
https://github.com/mikpe/pdp10-tools.git
synced 2026-01-11 23:53:19 +00:00
18 lines
238 B
C
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 */
|