2006-01-17 14:22:03 +01:00
|
|
|
#include <u.h>
|
|
|
|
#include <libc.h>
|
2006-01-17 13:37:52 +01:00
|
|
|
#include "fmtdef.h"
|
2005-08-08 14:50:13 +02:00
|
|
|
|
|
|
|
char*
|
|
|
|
seprint(char *buf, char *e, char *fmt, ...)
|
|
|
|
{
|
|
|
|
char *p;
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start(args, fmt);
|
|
|
|
p = vseprint(buf, e, fmt, args);
|
|
|
|
va_end(args);
|
|
|
|
return p;
|
|
|
|
}
|