diff options
Diffstat (limited to 'libc/str.c')
-rw-r--r-- | libc/str.c | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -77,6 +77,18 @@ char *strchr(const char *s, int c) return (char *)s; } +char *strrchr(const char *s, int c) +{ + char *ret = 0; + + do { + if (*s == c) + ret = (char *)s; + } while (*s++); + + return ret; +} + char *strcat(char *dst, const char *src) { strcpy(strchr(dst, '\0'), src); |