resetlexer.c revision 145519
1/*	$FreeBSD: head/contrib/ipfilter/lib/resetlexer.c 145519 2005-04-25 18:20:15Z darrenr $	*/
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