mirror of
https://github.com/zeldaret/oot
synced 2026-05-23 06:54:24 -04:00
6d56b1b8e0
* Cleanup includes in header files * include libc headers without libc/ prefix * fix * fix2 * fix3 * fix4 * some bss lol * bss * fix
10 lines
182 B
C
10 lines
182 B
C
#ifndef LIBC64_SPRINTF_H
|
|
#define LIBC64_SPRINTF_H
|
|
|
|
#include "stdarg.h"
|
|
|
|
int vsprintf(char* dst, const char* fmt, va_list args);
|
|
int sprintf(char* dst, const char* fmt, ...);
|
|
|
|
#endif
|