From 8911721efbf3b3721376e2baa30bae002c2975c2 Mon Sep 17 00:00:00 2001 From: "Charles.Forsyth" Date: Mon, 15 Jan 2007 21:04:26 +0000 Subject: 20070115 --- lib9/runeseprint.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 lib9/runeseprint.c (limited to 'lib9/runeseprint.c') 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; +} -- cgit v1.2.3