]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/ipfilter/lib/resetlexer.c
This commit was generated by cvs2svn to compensate for changes in r169962,
[FreeBSD/FreeBSD.git] / contrib / ipfilter / lib / resetlexer.c
1 /*      $FreeBSD$       */
2
3 #include "ipf.h"
4
5 long    string_start = -1;
6 long    string_end = -1;
7 char    *string_val = NULL;
8 long    pos = 0;
9
10
11 void resetlexer()
12 {
13         string_start = -1;
14         string_end = -1;
15         string_val = NULL;
16         pos = 0;
17 }