mfiutil(8): Use MAN instead of MAN8.
[dragonfly.git] / contrib / tre / lib / tre-compile.h
blob355ec4d68ccdbc83abcaef5aaafb5223bd16a881
1 /*
2 tre-compile.h: Regex compilation definitions
4 This software is released under a BSD-style license.
5 See the file LICENSE for details and copyright.
7 */
10 #ifndef TRE_COMPILE_H
11 #define TRE_COMPILE_H 1
13 typedef struct {
14 int position;
15 int code_min;
16 int code_max;
17 int *tags;
18 int assertions;
19 tre_bracket_match_list_t *bracket_match_list;
20 int backref;
21 int *params;
22 locale_t loc;
23 } tre_pos_and_tags_t;
25 #endif /* TRE_COMPILE_H */
27 /* EOF */