diff options
Diffstat (limited to 'lib9/runeseprint.c')
| -rw-r--r-- | lib9/runeseprint.c | 13 |
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; +} |
