2006-01-17 13:22:03 +00:00
|
|
|
#include <u.h>
|
|
|
|
#include <libc.h>
|
2006-01-17 12:37:52 +00:00
|
|
|
#include "fmtdef.h"
|
2005-08-08 12:50:13 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
runesnprint(Rune *buf, int len, char *fmt, ...)
|
|
|
|
{
|
|
|
|
int n;
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start(args, fmt);
|
|
|
|
n = runevsnprint(buf, len, fmt, args);
|
|
|
|
va_end(args);
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|