diff options
author | Madhukar Pappireddy <madhukar.pappireddy@arm.com> | 2020-09-08 19:00:00 -0500 |
---|---|---|
committer | Madhukar Pappireddy <madhukar.pappireddy@arm.com> | 2020-09-11 11:34:01 -0500 |
commit | 77648689ad2627911a3aa6fd69463e8043889532 (patch) | |
tree | 45d3955bf2ccccc70635b498d2449f72ca739b46 /include/lib/libc/stdio.h | |
parent | a41ca4c3449c51822d318e295b21d452efac2848 (diff) | |
download | platform_external_arm-trusted-firmware-77648689ad2627911a3aa6fd69463e8043889532.tar.gz platform_external_arm-trusted-firmware-77648689ad2627911a3aa6fd69463e8043889532.tar.bz2 platform_external_arm-trusted-firmware-77648689ad2627911a3aa6fd69463e8043889532.zip |
libc: Add support for vsnprintf()
It uses the existing implementation of snprintf() function
Change-Id: Ie59418564c2e415222e819cf322c34e9a4d1f336
Signed-off-by: Madhukar Pappireddy <madhukar.pappireddy@arm.com>
Diffstat (limited to 'include/lib/libc/stdio.h')
-rw-r--r-- | include/lib/libc/stdio.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/lib/libc/stdio.h b/include/lib/libc/stdio.h index 2d9e6557b..ba13683e6 100644 --- a/include/lib/libc/stdio.h +++ b/include/lib/libc/stdio.h @@ -22,6 +22,7 @@ int snprintf(char *s, size_t n, const char *fmt, ...) __printflike(3, 4); #ifdef STDARG_H int vprintf(const char *fmt, va_list args); +int vsnprintf(char *s, size_t n, const char *fmt, va_list args); #endif int putchar(int c); |