#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