lexLeo
Loading...
Searching...
No Matches
symtab_internal.h
1// src/core/symtab/include/internal/symtab_internal.h
2
3#ifndef SYMTAB_INTERNAL_H
4#define SYMTAB_INTERNAL_H
5
6#include "symtab.h"
7
8#include "hashtable.h"
9
10#define SYMTAB_SIZE 256
11
12extern const hashtable_key_type SYMTAB_KEY_TYPE;
13
14typedef struct symtab {
15 hashtable *symbols;
16 struct symtab *parent;
17} symtab;
18
19#endif //SYMTAB_INTERNAL_H
Definition hashtable_internal.h:14
Definition symtab_internal.h:14