aboutsummaryrefslogtreecommitdiffstats
path: root/include/lib/libc/string.h
diff options
context:
space:
mode:
authorAntonio Niño Díaz <antonio.ninodiaz@arm.com>2018-11-06 12:45:09 +0100
committerGitHub <noreply@github.com>2018-11-06 12:45:09 +0100
commit9c10e3485b10ece95f9af8a6af79558397ee1d78 (patch)
treeaffcfce48a2f598b9caeb31a61aee959757868d6 /include/lib/libc/string.h
parent4eb835f827cb43cb68473ad4e27f74164dc14c89 (diff)
parent73f1ac6c8ee4a688ed8e1fddc040b882171d3453 (diff)
downloadplatform_external_arm-trusted-firmware-9c10e3485b10ece95f9af8a6af79558397ee1d78.tar.gz
platform_external_arm-trusted-firmware-9c10e3485b10ece95f9af8a6af79558397ee1d78.tar.bz2
platform_external_arm-trusted-firmware-9c10e3485b10ece95f9af8a6af79558397ee1d78.zip
Merge pull request #1665 from antonio-nino-diaz-arm/an/fdt-helpers
Introduce new fdt helpers
Diffstat (limited to 'include/lib/libc/string.h')
-rw-r--r--include/lib/libc/string.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/lib/libc/string.h b/include/lib/libc/string.h
index 3c8e3b65e..ee6eeacef 100644
--- a/include/lib/libc/string.h
+++ b/include/lib/libc/string.h
@@ -28,5 +28,6 @@ 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);
+size_t strlcpy(char * dst, const char * src, size_t dsize);
#endif /* STRING_H */