Sign in
android
/
platform
/
external
/
regex-re2
/
f5f006e5e48932e4d21c044a1ea92e321142aaad
/
.
/
testinstall.cc
blob: e369ceada4b4e4d6c9a4db232d22f8cf80887351 [
file
] [
log
] [
blame
]
#include
<re2/re2.h>
#include
<stdio.h>
using
namespace
re2
;
int
main
(
void
)
{
if
(
RE2
::
FullMatch
(
"axbyc"
,
"a.*b.*c"
))
{
printf
(
"PASS\n"
);
return
0
;
}
printf
(
"FAIL\n"
);
return
2
;
}