/*
// ColdMUD was created and is copyright 1993, 1994 by Greg Hudson
//
// ColdX is a derivitive work, and is copyright 1995 by the ColdX Project.
// Full copyright information can be found in the file doc/CREDITS
//
// File:        token.h
// Version:     0.1-5
// Last Edited: 18 May 1995
//
// ---
//
// Declarations for the lexer.
*/

#ifndef TOKEN_H
#define TOKEN_H
#include <stdio.h>
#include "data.h"

void init_token(void);
void lex_start(List *code_lines);
int yylex(void);
int is_valid_ident(char *s);
int cur_lineno(void);

#endif