mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
24 lines
319 B
C
24 lines
319 B
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;
|
|
}
|