root/sbin/ipf/libipf/resetlexer.c

/*
 * Copyright (C) 2012 by Darren Reed.
 *
 * See the IPFILTER.LICENCE file for details on licencing.
 *
 * $Id$
 */

#include "ipf.h"

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


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