summaryrefslogtreecommitdiff
path: root/src/regex/regmatch_t.h
blob: 0525530a9615b0c8debbd0d4ae81c29401d6700c (plain)
1
2
3
4
5
6
7
8
9
10
#include <regex.h>

typedef struct {
	regoff_t rm_so;
	regoff_t rm_eo;
} regmatch_t;
/*
POSIX(2)
*/