resetlexer.c revision 145511
1/*	$NetBSD$	*/
2
3#include "ipf.h"
4
5long	string_start = -1;
6long	string_end = -1;
7char	*string_val = NULL;
8long	pos = 0;
9
10
11void resetlexer()
12{
13	string_start = -1;
14	string_end = -1;
15	string_val = NULL;
16	pos = 0;
17}
18