Sign in
code
/
git
/
b8cda126b4e0fbfd514b26dec4ee8a1c6849abe9
/
.
/
t
/
helper
/
test-pcre2-config.c
blob: 5d0b2a2e10fa66e16dd954f97ba7561b106fce50 [
file
]
#include
"test-tool.h"
#include
"grep.h"
int
cmd__pcre2_config
(
int
argc
,
const
char
**
argv
)
{
if
(
argc
==
2
&&
!
strcmp
(
argv
[
1
],
"has-PCRE2_MATCH_INVALID_UTF"
))
{
int
value
=
PCRE2_MATCH_INVALID_UTF
;
return
!
value
;
}
return
1
;
}