summaryrefslogtreecommitdiff
path: root/lib9/runeseprint.c
diff options
context:
space:
mode:
authorCharles.Forsyth <devnull@localhost>2007-01-15 21:04:26 +0000
committerCharles.Forsyth <devnull@localhost>2007-01-15 21:04:26 +0000
commit8911721efbf3b3721376e2baa30bae002c2975c2 (patch)
treeaa059ffa39c2c4f1cd5ed2e137dcb9b079de2717 /lib9/runeseprint.c
parent0e96539ff7cff23233d3f0a64bb285b385a3a1f4 (diff)
20070115
Diffstat (limited to 'lib9/runeseprint.c')
-rw-r--r--lib9/runeseprint.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib9/runeseprint.c b/lib9/runeseprint.c
new file mode 100644
index 00000000..00265481
--- /dev/null
+++ b/lib9/runeseprint.c
@@ -0,0 +1,13 @@
+#include "lib9.h"
+
+Rune*
+runeseprint(Rune *buf, Rune *e, char *fmt, ...)
+{
+ Rune *p;
+ va_list args;
+
+ va_start(args, fmt);
+ p = runevseprint(buf, e, fmt, args);
+ va_end(args);
+ return p;
+}