8 lines
110 B
C
8 lines
110 B
C
#ifndef _REGEX_H
|
|
#define _REGEX_H
|
|
|
|
char *re_comp(const char *regex);
|
|
int re_exec(const char *string);
|
|
|
|
#endif
|