Lines Matching defs:regexp
1 /* $NetBSD: regexp.h,v 1.7 2005/02/03 04:39:32 perry Exp $ */
34 * @(#)regexp.h 8.1 (Berkeley) 6/2/93
71 * @(#)regexp.h 8.1 (Berkeley) 6/2/93
78 * Definitions etc. for regexp(3) routines.
80 * Caveat: this is V8 regexp(3) [actually, a reimplementation thereof],
84 typedef struct regexp {
92 } regexp;
98 regexp *__compat_regcomp(const char *);
99 int __compat_regexec(const regexp *, const char *);
100 void __compat_regsub(const regexp *, const char *, char *);
103 regexp *regcomp(const char *) __RENAME(__compat_regcomp);
104 int regexec(const regexp *, const char *) __RENAME(__compat_regexec);
105 void regsub(const regexp *, const char *, char *) __RENAME(__compat_regsub);