summaryrefslogtreecommitdiff
path: root/src/libc/stdio/sprintf.c
diff options
context:
space:
mode:
authordzwdz2023-09-03 01:30:53 +0200
committerdzwdz2023-09-03 01:30:53 +0200
commita492c6ec119bd1151a6f2f7b70875ba173e9c036 (patch)
treea96f9d4ff4b120ecd58f8f41ab26b5a28fd368c0 /src/libc/stdio/sprintf.c
parentfd80c0b227336f4650d6b54d82469feb017aeded (diff)
libc: split up large .c files, slimming down small binaries a bit
Diffstat (limited to 'src/libc/stdio/sprintf.c')
-rw-r--r--src/libc/stdio/sprintf.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/libc/stdio/sprintf.c b/src/libc/stdio/sprintf.c
new file mode 100644
index 0000000..0bfbb17
--- /dev/null
+++ b/src/libc/stdio/sprintf.c
@@ -0,0 +1,28 @@
+#include <camellia/syscalls.h>
+#include <shared/mem.h>
+#include <shared/printf.h>
+#include <stdio.h>
+
+int sprintf(char *restrict s, const char *restrict fmt, ...) {
+ int ret;
+ va_list argp;
+ va_start(argp, fmt);
+ ret = vsnprintf(s, ~0, fmt, argp);
+ va_end(argp);
+ return ret;
+}
+
+int vsprintf(char *restrict s, const char *restrict fmt, va_list ap) {
+ return vsnprintf(s, ~0, fmt, ap);
+}
+
+int _klogf(const char *fmt, ...) {
+ char buf[256];
+ int ret;
+ va_list argp;
+ va_start(argp, fmt);
+ ret = vsnprintf(buf, sizeof buf, fmt, argp);
+ va_end(argp);
+ _sys_debug_klog(buf, ret);
+ return ret;
+}