repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
etc/protocols - sync with NetBSD-8
[minix.git]
/
tests
/
lib
/
libc
/
regex
/
data
/
repet_ordinary.in
blob
08bc286e5be272db17c8dbcff04aad26468a464e
1
# ordinary repetitions
2
ab*c & abc abc
3
ab+c - abc abc
4
ab?c - abc abc
5
a\(*\)b b a*b a*b
6
a\(**\)b b ab ab
7
a\(***\)b bC BADRPT
8
*a b *a *a
9
**a b a a
10
***a bC BADRPT