blob: 0e162d9be575a041d95bd913e6907135d73de1a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/** BEGIN COPYRIGHT BLOCK
* Copyright 2001 Sun Microsystems, Inc.
* Portions copyright 1999, 2001-2003 Netscape Communications Corporation.
* All rights reserved.
* END COPYRIGHT BLOCK **/
typedef struct LASIpTree {
struct LASIpTree *action[2];
} LASIpTree_t;
typedef struct LASIpContext {
LASIpTree_t *treetop; /* Top of the pattern tree */
} LASIpContext_t;
|