Ejemplo n.º 1
0
void logoutf(const char *fmt, ...)
{
    va_list args;
    va_start(args, fmt);
    logoutfv(fmt, args);
    va_end(args);
}
Ejemplo n.º 2
0
void conoutfv(int type, const char *fmt, va_list args)
{
    logoutfv(fmt, args);
}