mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-23 06:54:14 -04:00
12 lines
262 B
C
12 lines
262 B
C
#ifndef LIBC64_APRINTF_H
|
|
#define LIBC64_APRINTF_H
|
|
|
|
#include "ultra64.h"
|
|
|
|
typedef void* (*PrintCallback)(void*, const char*, size_t);
|
|
|
|
int vaprintf(PrintCallback* pfn, const char* fmt, va_list args);
|
|
int aprintf(PrintCallback* pfn, const char* fmt, ...);
|
|
|
|
#endif
|