xref: /titanic_53/usr/src/cmd/ipf/lib/common/resetlexer.c (revision 2a8164df8a5f42c8a00f10c67d7bc84f80ae9c41)
1 #include "ipf.h"
2 
3 long	string_start = -1;
4 long	string_end = -1;
5 char	*string_val = NULL;
6 long	pos = 0;
7 
8 
9 void resetlexer()
10 {
11 	string_start = -1;
12 	string_end = -1;
13 	string_val = NULL;
14 	pos = 0;
15 }
16