blob: 38b0183a3ac30548cc999745250632196a79ea80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef LIBC64_APRINTF_H
#define LIBC64_APRINTF_H
#include "ultra64.h"
#include "stdarg.h"
int vaprintf(PrintCallback* pfn, const char* fmt, va_list args);
int aprintf(PrintCallback* pfn, const char* fmt, ...);
#endif
|