aboutsummaryrefslogtreecommitdiff
path: root/printf.h
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi92@disroot.org>2025-07-26 00:29:22 +0200
committerXavier Del Campo Romero <xavi92@disroot.org>2025-07-26 00:29:22 +0200
commite607299f35596e891759ab9256c953cc03d804ca (patch)
tree49b28bf1fc09911d9a42722a0d50831944c8a916 /printf.h
parentd3b984684bb8a8bdc48cc7a1abecb93ce59bbe3e (diff)
Add vsprintf
Diffstat (limited to 'printf.h')
-rw-r--r--printf.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/printf.h b/printf.h
index 6104ccf..b0a2fd9 100644
--- a/printf.h
+++ b/printf.h
@@ -84,8 +84,10 @@ int sprintf_(char* buffer, const char* format, ...);
*/
#define snprintf snprintf_
#define vsnprintf vsnprintf_
+#define vsprintf vsprintf_
int snprintf_(char* buffer, size_t count, const char* format, ...);
int vsnprintf_(char* buffer, size_t count, const char* format, va_list va);
+int vsprintf_(char* buffer, const char* format, va_list va);
/**