summaryrefslogtreecommitdiff
path: root/snprinting.c
diff options
context:
space:
mode:
Diffstat (limited to 'snprinting.c')
-rw-r--r--snprinting.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/snprinting.c b/snprinting.c
new file mode 100644
index 0000000..b0a7095
--- /dev/null
+++ b/snprinting.c
@@ -0,0 +1,13 @@
+#include <u.h>
+#include <libc.h>
+
+void
+main()
+{
+ char buf[128];
+ int n;
+
+ n = snprint(buf, sizeof buf, "%s:%d\n", "actual.out", 2);
+ print("%d\n", n);
+ exits(0);
+}