mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-23 06:54:14 -04:00
6dd1600936
* Move qrand to libc64 * use an union to avoid type punning * __osMalloc * math64.c * fixed_point.h * sleep * aprintf.h * sprintf * malloc * use original names on aprintf.c and malloc.c * qrand cleanup pass * use original names of sleep.c * og names for sprintf * more cleanup * format * fixes * whoops * use ARRAY_COUNT again * comment * Use `fu` * forgot this one * review * fix * sneak a tiny cleanup
10 lines
183 B
C
10 lines
183 B
C
#ifndef LIBC64_SPRINTF_H
|
|
#define LIBC64_SPRINTF_H
|
|
|
|
#include "ultra64.h"
|
|
|
|
int vsprintf(char* dst, const char* fmt, va_list args);
|
|
int sprintf(char* dst, const char* fmt, ...);
|
|
|
|
#endif
|