diff options
| author | Olof Johansson <[email protected]> | 2019-04-10 17:41:52 -0700 |
|---|---|---|
| committer | Anup Patel <[email protected]> | 2019-04-24 09:49:46 +0530 |
| commit | 10baa64c02f6746fd506136e0693aa2d592574fb (patch) | |
| tree | da00e48f0cb5d1434cbc7c31bb6ca15efa7d4564 /platform/common/include/plat/string.h | |
| parent | fbf986ac2a0b926ae97e6796b87e366610d7589e (diff) | |
all: run clang-format and update checked-in files
Noisy commit, no functional changes.
Generated with an current upstream clang-format and:
clang-format -i $(find . -name \*.[ch])
Signed-off-by: Olof Johansson <[email protected]>
Diffstat (limited to 'platform/common/include/plat/string.h')
| -rw-r--r-- | platform/common/include/plat/string.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/platform/common/include/plat/string.h b/platform/common/include/plat/string.h index 67ad3f24..8259ef56 100644 --- a/platform/common/include/plat/string.h +++ b/platform/common/include/plat/string.h @@ -18,7 +18,7 @@ size_t strlen(const char *str); size_t strnlen(const char *str, size_t count); -char *strcpy(char *dest,const char *src); +char *strcpy(char *dest, const char *src); char *strncpy(char *dest, const char *src, size_t count); @@ -26,13 +26,13 @@ char *strchr(const char *s, int c); char *strrchr(const char *s, int c); -void *memset(void *s,int c,size_t count); +void *memset(void *s, int c, size_t count); void *memcpy(void *dest, const void *src, size_t count); -void *memmove(void *dest,const void *src, size_t count); +void *memmove(void *dest, const void *src, size_t count); -int memcmp(const void *s1,const void *s2, size_t count); +int memcmp(const void *s1, const void *s2, size_t count); void *memchr(const void *s, int c, size_t count); |
