From 0c96eba3de7e81e310f30e66bb595980ea13f979 Mon Sep 17 00:00:00 2001 From: Mark Whitley Date: Wed, 28 Jun 2000 21:58:31 +0000 Subject: Removed some function decls (regex, regcomp, etc.) and put them in regexp.c --- regexp.h | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/regexp.h b/regexp.h index 0c7c9d9ae..9e0cb4022 100644 --- a/regexp.h +++ b/regexp.h @@ -25,24 +25,6 @@ #define _REGEXP_H_ - - -#define NSUBEXP 10 -typedef struct regexp { - char *startp[NSUBEXP]; - char *endp[NSUBEXP]; - int minlen; /* length of shortest possible match */ - char first; /* first character, if known; else \0 */ - char bol; /* boolean: must start at beginning of line? */ - char program[1]; /* Unwarranted chumminess with compiler. */ -} regexp; - - - -extern regexp *regcomp(char* text); -extern int regexec(struct regexp* re, char* str, int bol, int ignoreCase); -extern void regsub(struct regexp* re, char* src, char* dst); - extern int find_match(char *haystack, char *needle, int ignoreCase); extern int replace_match(char *haystack, char *needle, char *newNeedle, int ignoreCase); -- cgit v1.2.3