diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/lib.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -393,6 +393,8 @@ int unescape(char c) return (idx == -1) ? 0 : to[idx]; } +// If string ends with suffix return pointer to start of suffix in string, +// else NULL char *strend(char *str, char *suffix) { long a = strlen(str), b = strlen(suffix); |