Sign in
android
/
platform
/
external
/
regex-re2
/
f07ea7a34be9f2b5f024061598b83aa8980a1a8d
/
.
/
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
;
}