aboutsummaryrefslogtreecommitdiff
path: root/lib/lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/lib.c')
-rw-r--r--lib/lib.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/lib.c b/lib/lib.c
index f6776142..ceced263 100644
--- a/lib/lib.c
+++ b/lib/lib.c
@@ -392,6 +392,15 @@ int unescape(char c)
return (idx == -1) ? 0 : to[idx];
}
+char *strend(char *str, char *suffix)
+{
+ long a = strlen(str), b = strlen(suffix);
+
+ if (a>b && !strcmp(str += a-b, suffix)) return str;
+
+ return 0;
+}
+
// If *a starts with b, advance *a past it and return 1, else return 0;
int strstart(char **a, char *b)
{