blob: 32d2b244adcb65491a06e64f6060763baa7a43e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef LIBC64_SPRINTF_H
#define LIBC64_SPRINTF_H
#include "ultra64.h"
#include "libc/stdarg.h"
void* proutPrintf(void* dst, const char* fmt, size_t size);
int vsprintf(char* dst, char* fmt, va_list args);
int sprintf(char *s, const char *fmt, ...);
#endif
|