xref: /freebsd/contrib/netbsd-tests/lib/libc/regex/data/repet_ordinary.in (revision 193d9e768ba63fcfb187cfd17f461f7d41345048)
1# ordinary repetitions
2ab*c		&	abc	abc
3ab+c		-	abc	abc
4ab?c		-	abc	abc
5a\(*\)b		b	a*b	a*b
6a\(**\)b	b	ab	ab
7a\(***\)b	bC	BADRPT
8*a		b	*a	*a
9**a		b	a	a
10***a		bC	BADRPT
11