root/usr/src/cmd/ipf/lib/resetlexer.c
#include "ipf.h"

long    string_start = -1;
long    string_end = -1;
char    *string_val = NULL;
long    pos = 0;


void resetlexer()
{
        string_start = -1;
        string_end = -1;
        string_val = NULL;
        pos = 0;
}