From 1a29aba3673b753664e97fcfed1e3d38f138b3b7 Mon Sep 17 00:00:00 2001 From: Antonio Nino Diaz Date: Fri, 19 Oct 2018 00:57:10 +0100 Subject: libc: Integrate strrchr in libc Change-Id: I3ddc07cb02d73cd7614af7a5b21827aae155f9a0 Signed-off-by: Antonio Nino Diaz --- include/lib/libc/string.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include') diff --git a/include/lib/libc/string.h b/include/lib/libc/string.h index 050f64380..3c8e3b65e 100644 --- a/include/lib/libc/string.h +++ b/include/lib/libc/string.h @@ -27,5 +27,6 @@ char *strchr(const char *s, int c); void *memset(void *dst, int val, size_t count); size_t strlen(const char *s); size_t strnlen(const char *s, size_t maxlen); +char *strrchr(const char *p, int ch); #endif /* STRING_H */ -- cgit v1.2.3