blob: 004e07e63f7006abb8fde466da3e48c7a1ddb21d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/** BEGIN COPYRIGHT BLOCK
* Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
* Copyright (C) 2005 Red Hat, Inc.
* 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;
|