From 91c13e54b5d631b65e2f8344d5e0abd058f78ba1 Mon Sep 17 00:00:00 2001 From: rsc Date: Sun, 29 Feb 2004 22:11:15 +0000 Subject: Move utf, fmt. Small header file changes. --- src/lib9/fmt/runeseprint.c | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 src/lib9/fmt/runeseprint.c (limited to 'src/lib9/fmt/runeseprint.c') diff --git a/src/lib9/fmt/runeseprint.c b/src/lib9/fmt/runeseprint.c new file mode 100644 index 00000000..7829a439 --- /dev/null +++ b/src/lib9/fmt/runeseprint.c @@ -0,0 +1,30 @@ +/* + * The authors of this software are Rob Pike and Ken Thompson. + * Copyright (c) 2002 by Lucent Technologies. + * Permission to use, copy, modify, and distribute this software for any + * purpose without fee is hereby granted, provided that this entire notice + * is included in all copies of any software which is or includes a copy + * or modification of this software and in all copies of the supporting + * documentation for such software. + * THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED + * WARRANTY. IN PARTICULAR, NEITHER THE AUTHORS NOR LUCENT TECHNOLOGIES MAKE ANY + * REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY + * OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. + */ +#include +#include +#include "utf.h" +#include "fmt.h" +#include "fmtdef.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