Files
retrobsd/include/regex.h
2022-05-27 19:24:20 -07:00

8 lines
110 B
C

#ifndef _REGEX_H
#define _REGEX_H
char *re_comp(const char *regex);
int re_exec(const char *string);
#endif