blob: f32cd25360e7cb77b86e056ec8187c1a41452501 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef TOKLIST_H
#define TOKLIST_H
#include "symbol.h"
struct token;
// /*extern*/ struct token *toklist_eat();
// /*extern*/ struct token *toklist_peek();
symbol toklist_eat();
symbol toklist_peek();
#endif
|