aboutsummaryrefslogtreecommitdiff
path: root/libc/str.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/str.c')
-rw-r--r--libc/str.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/libc/str.c b/libc/str.c
index 7f6d782..2e5f193 100644
--- a/libc/str.c
+++ b/libc/str.c
@@ -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);