xref: /freebsd/sbin/ipf/libipf/resetlexer.c (revision d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf)
1 
2 /*
3  * Copyright (C) 2012 by Darren Reed.
4  *
5  * See the IPFILTER.LICENCE file for details on licencing.
6  *
7  * $Id$
8  */
9 
10 #include "ipf.h"
11 
12 long	string_start = -1;
13 long	string_end = -1;
14 char	*string_val = NULL;
15 long	pos = 0;
16 
17 
18 void resetlexer(void)
19 {
20 	string_start = -1;
21 	string_end = -1;
22 	string_val = NULL;
23 	pos = 0;
24 }
25