summaryrefslogtreecommitdiff
path: root/tools/src/vsprintf.h
diff options
context:
space:
mode:
authormagh <magh@maghmogh.com>2023-03-06 18:44:55 -0600
committermagh <magh@maghmogh.com>2023-03-06 18:44:55 -0600
commite80d9d8871b325a04b18f90a9ea4bb7fd148fb25 (patch)
tree79dbdb8506b7ff1e92549188d1b94cfc0b3503ae /tools/src/vsprintf.h
add m1n1HEADmaster
Diffstat (limited to 'tools/src/vsprintf.h')
-rw-r--r--tools/src/vsprintf.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/src/vsprintf.h b/tools/src/vsprintf.h
new file mode 100644
index 0000000..cff6c93
--- /dev/null
+++ b/tools/src/vsprintf.h
@@ -0,0 +1,11 @@
+/* SPDX-License-Identifier: MIT */
+
+#ifndef VSPRINTF_H
+#define VSPRINTF_H
+
+#include <stdarg.h>
+
+int vsprintf(char *buf, const char *fmt, va_list args);
+int vsnprintf(char *buf, size_t size, const char *fmt, va_list args);
+
+#endif