Exemplo n.º 1
0
int CLIB_DECL core_fprintf(core_file *f, const char *fmt, ...)
{
	int rc;
	va_list va;
	va_start(va, fmt);
	rc = core_vfprintf(f, fmt, va);
	va_end(va);
	return rc;
}
Exemplo n.º 2
0
int emu_file::vprintf(const char *fmt, va_list va)
{
    // write the data if we can
    return (m_file != NULL) ? core_vfprintf(m_file, fmt, va) : 0;
}