]> granicus.if.org Git - graphviz/commitdiff
remove unused strsubmatch function
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 6 Jun 2020 00:10:09 +0000 (17:10 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 20 Jun 2020 02:57:27 +0000 (19:57 -0700)
This also removes two compiler warnings.

lib/ast/strmatch.c

index 3e374a9c910ea9368ab4c37c8b836276153e27a6..b91f3b41e958e5e03f771d6750fb122e13bc407b 100644 (file)
@@ -777,20 +777,3 @@ int strmatch(const char *s, const char *p)
 {
     return strgrpmatch(s, p, NiL, 0, STR_MAXIMAL | STR_LEFT | STR_RIGHT);
 }
-
-/*
- * leading substring match
- * first char after end of substring returned
- * 0 returned if no match
- *
- * OBSOLETE: use strgrpmatch()
- */
-
-char *strsubmatch(const char *s, const char *p, int flags)
-{
-    int match[2];
-
-    return strgrpmatch(s, p, match, 1,
-                      (flags ? STR_MAXIMAL : 0) | STR_LEFT) ? (char *) s +
-       match[1] : (char *) 0;
-}