repo.or.cz
/
llvm-core.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[Alignment][NFC] Use Align with TargetLowering::setMinFunctionAlignment
[llvm-core.git]
/
utils
/
benchmark
/
cmake
/
gnu_posix_regex.cpp
blob
105189f02ee6fcec503a554d8ebac6d962605fb2
1
#include <gnuregex.h>
2
#include <string>
3
int
main
() {
4
std
::
string str
=
"test0159"
;
5
regex_t re
;
6
int
ec
=
regcomp
(&
re
,
"^[a-z]+[0-9]+$"
,
REG_EXTENDED
|
REG_NOSUB
);
7
if
(
ec
!=
0
) {
8
return
ec
;
9
}
10
return
regexec
(&
re
,
str
.
c_str
(),
0
,
nullptr
,
0
) ? -
1
:
0
;
11
}