aboutsummaryrefslogtreecommitdiff
path: root/src/libfmt/print.c
diff options
context:
space:
mode:
authorNicholas <nbnoll@eml.cc>2021-11-12 09:22:01 -0800
committerNicholas <nbnoll@eml.cc>2021-11-12 09:22:01 -0800
commitce05175372a9ddca1a225db0765ace1127a39293 (patch)
tree5988b4d4f6b402e4953945886fc90aae11203df6 /src/libfmt/print.c
parentb375f3cdedb5b0e08745d100b40e38d2f8396a58 (diff)
chore: simplified organizational structurelaptop
Diffstat (limited to 'src/libfmt/print.c')
-rw-r--r--src/libfmt/print.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/libfmt/print.c b/src/libfmt/print.c
new file mode 100644
index 0000000..20b8e00
--- /dev/null
+++ b/src/libfmt/print.c
@@ -0,0 +1,13 @@
+#include "internal.h"
+
+int
+fmt·print(char *fmt, ...)
+{
+ int n;
+ va_list args;
+
+ va_start(args, fmt);
+ n = fmt·vfprint(1, fmt, args);
+ va_end(args);
+ return n;
+}