]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - contrib/ipfilter/lib/resetlexer.c
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / contrib / ipfilter / lib / resetlexer.c
1 /*      $FreeBSD$       */
2
3 /*
4  * Copyright (C) 2012 by Darren Reed.
5  *
6  * See the IPFILTER.LICENCE file for details on licencing.
7  *
8  * $Id$
9  */
10
11 #include "ipf.h"
12
13 long    string_start = -1;
14 long    string_end = -1;
15 char    *string_val = NULL;
16 long    pos = 0;
17
18
19 void resetlexer()
20 {
21         string_start = -1;
22         string_end = -1;
23         string_val = NULL;
24         pos = 0;
25 }