aboutsummaryrefslogtreecommitdiff
path: root/internal.h
diff options
context:
space:
mode:
authorMark Whitley <markw@lineo.com>2000-07-11 16:53:56 +0000
committerMark Whitley <markw@lineo.com>2000-07-11 16:53:56 +0000
commitdf5f6ba1159f8c1af500fa1b8eb9c9646e4de2a6 (patch)
tree90005f171e95b4fc0eefca5171593ba0b105b3f7 /internal.h
parentda9841efc1e924ab3f645d931ae17c6d4aaf766f (diff)
downloadbusybox-df5f6ba1159f8c1af500fa1b8eb9c9646e4de2a6.tar.gz
Applied patch from Matt Kraai which does the following:
- adds case-insensitive matching in sed s/// epxressions - consolodates common regcomp code in grep & sed into bb_regcomp and put in utility.c - cleans up a bunch of cruft
Diffstat (limited to 'internal.h')
-rw-r--r--internal.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/internal.h b/internal.h
index 5864c47ac..4ef15325e 100644
--- a/internal.h
+++ b/internal.h
@@ -34,7 +34,7 @@
#include <sys/stat.h>
#include <sys/param.h>
#include <mntent.h>
-
+#include <regex.h>
/* Some useful definitions */
#define FALSE ((int) 1)
@@ -259,6 +259,7 @@ extern int find_real_root_device_name(char* name);
extern char *get_line_from_file(FILE *file);
extern char process_escape_sequence(char **ptr);
extern char *get_last_path_component(char *path);
+extern int bb_regcomp(regex_t *preg, const char *regex, int cflags);
extern void *xmalloc (size_t size);
extern char *xstrdup (const char *s);