blob: 3d8f3b9fa19fb2d7259d9817c62f5992c4184b38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// includes pcre2.h with the appropriate preprocessor definitions.
// do not include pcre2.h directly.
#ifndef PCRE_INC_H_
#define PCRE_INC_H_
#define PCRE2_STATIC
#define PCRE2_CODE_UNIT_WIDTH 32
#include <pcre2.h>
#endif // PCRE_INC_H_
|