repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
dist
/
ipf
/
lib
/
resetlexer.c
blob
f2f03e3ed1a5ee484aab999504a6b05676a99513
1
/* $NetBSD$ */
2
3
/*
4
* Copyright (C) 2002 by Darren Reed.
5
*
6
* See the IPFILTER.LICENCE file for details on licencing.
7
*
8
* Id: resetlexer.c,v 1.1.4.1 2006/06/16 17:21:16 darrenr Exp
9
*/
10
11
#include
"ipf.h"
12
13
long
string_start
= -
1
;
14
long
string_end
= -
1
;
15
char
*
string_val
=
NULL
;
16
long
pos
=
0
;
17
18
19
void
resetlexer
()
20
{
21
string_start
= -
1
;
22
string_end
= -
1
;
23
string_val
=
NULL
;
24
pos
=
0
;
25
}