diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2016-12-25 17:53:10 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2016-12-25 17:53:10 +0000 |
commit | 80647123fe63c15caa93687028a45f9efee5b669 (patch) | |
tree | 6fe6df04e4b2cd506323ad2994b9527dd1ed7193 /vgrind/regexp.c | |
parent | 6db6db4b7f38f7760b90ec861a39b5ccb9df5ba9 (diff) |
Diffstat (limited to 'vgrind/regexp.c')
-rw-r--r-- | vgrind/regexp.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/vgrind/regexp.c b/vgrind/regexp.c index 185536b5ceba4..3d99f3c0781aa 100644 --- a/vgrind/regexp.c +++ b/vgrind/regexp.c @@ -17,6 +17,10 @@ #include <string.h> #include <stdlib.h> +int STRNCMP(register char *s1, register char *s2, register int len); +char * expmatch ( register char *s, register char *re, register char *mstring); +char *convexp( char *re); + typedef int boolean; #define TRUE 1 #define FALSE 0 |