blob: d16a05e0ba39cad8df7e93d3f4037f30334edd13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#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;
}
|