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