diff options
author | Gabor Kovesdan <gabor@FreeBSD.org> | 2011-05-03 19:33:09 +0000 |
---|---|---|
committer | Gabor Kovesdan <gabor@FreeBSD.org> | 2011-05-03 19:33:09 +0000 |
commit | 7e370ebd64e43d1ac59181c51ed9065a094d39d7 (patch) | |
tree | 28a6b48ed3f1eff1d6eab2af016c684746c58035 /lib/tre-compile.h |
Diffstat (limited to 'lib/tre-compile.h')
-rw-r--r-- | lib/tre-compile.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/lib/tre-compile.h b/lib/tre-compile.h new file mode 100644 index 0000000000000..51d5ac94acc61 --- /dev/null +++ b/lib/tre-compile.h @@ -0,0 +1,27 @@ +/* + tre-compile.h: Regex compilation definitions + + This software is released under a BSD-style license. + See the file LICENSE for details and copyright. + +*/ + + +#ifndef TRE_COMPILE_H +#define TRE_COMPILE_H 1 + +typedef struct { + int position; + int code_min; + int code_max; + int *tags; + int assertions; + tre_ctype_t class; + tre_ctype_t *neg_classes; + int backref; + int *params; +} tre_pos_and_tags_t; + +#endif /* TRE_COMPILE_H */ + +/* EOF */ |