aboutsummaryrefslogtreecommitdiff
path: root/libc/inc
diff options
context:
space:
mode:
Diffstat (limited to 'libc/inc')
-rw-r--r--libc/inc/str.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/inc/str.h b/libc/inc/str.h
index 3156fb2..662cbe7 100644
--- a/libc/inc/str.h
+++ b/libc/inc/str.h
@@ -9,6 +9,7 @@ u32 strlen(const char *s);
char *strcpy(char *dst, const char *src);
char *strncpy(char *dst, const char *src, u32 n);
char *strchr(const char *s, int c);
+char *strrchr(const char *s, int c);
char *strcat(char *dst, const char *src);
char *strncat(char *dst, const char *src, u32 n);
int strcmp(const char *s1, const char *s2);