xref: /freebsd/sbin/ipf/libipf/resetlexer.c (revision a03411e84728e9b267056fd31c7d1d9d1dc1b01e)
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