mirror of
https://github.com/0intro/conterm
synced 2024-11-22 13:51:34 +03:00
15 lines
196 B
C
15 lines
196 B
C
#include <u.h>
|
|
#include <libc.h>
|
|
|
|
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;
|
|
}
|