diff options
author | Antonio Nino Diaz <antonio.ninodiaz@arm.com> | 2018-10-19 00:57:10 +0100 |
---|---|---|
committer | Antonio Nino Diaz <antonio.ninodiaz@arm.com> | 2018-10-23 18:27:45 +0100 |
commit | 1a29aba3673b753664e97fcfed1e3d38f138b3b7 (patch) | |
tree | 4a68aa87267ee6ad8bfc52dc78f24d72d7044b07 /include | |
parent | 668afe261dc118eea7d01074ac0f4a04fee14b50 (diff) |
libc: Integrate strrchr in libc
Change-Id: I3ddc07cb02d73cd7614af7a5b21827aae155f9a0
Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/lib/libc/string.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/lib/libc/string.h b/include/lib/libc/string.h index 050f6438..3c8e3b65 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 */ |