xref: /freebsd-src/sbin/ipf/libipf/resetlexer.c (revision 2a63c3be158216222d89a073dcbd6a72ee4aab5a)
141edb306SCy Schubert 
241edb306SCy Schubert /*
341edb306SCy Schubert  * Copyright (C) 2012 by Darren Reed.
441edb306SCy Schubert  *
541edb306SCy Schubert  * See the IPFILTER.LICENCE file for details on licencing.
641edb306SCy Schubert  *
741edb306SCy Schubert  * $Id$
841edb306SCy Schubert  */
941edb306SCy Schubert 
1041edb306SCy Schubert #include "ipf.h"
1141edb306SCy Schubert 
1241edb306SCy Schubert long	string_start = -1;
1341edb306SCy Schubert long	string_end = -1;
1441edb306SCy Schubert char	*string_val = NULL;
1541edb306SCy Schubert long	pos = 0;
1641edb306SCy Schubert 
1741edb306SCy Schubert 
resetlexer(void)18*efeb8bffSCy Schubert void resetlexer(void)
1941edb306SCy Schubert {
2041edb306SCy Schubert 	string_start = -1;
2141edb306SCy Schubert 	string_end = -1;
2241edb306SCy Schubert 	string_val = NULL;
2341edb306SCy Schubert 	pos = 0;
2441edb306SCy Schubert }
25