mirror of
https://github.com/0intro/conterm
synced 2024-11-25 23:19:36 +03:00
15 lines
168 B
C
15 lines
168 B
C
#include <u.h>
|
|
#include <libc.h>
|
|
|
|
char*
|
|
smprint(char *fmt, ...)
|
|
{
|
|
va_list args;
|
|
char *p;
|
|
|
|
va_start(args, fmt);
|
|
p = vsmprint(fmt, args);
|
|
va_end(args);
|
|
return p;
|
|
}
|