mirror of
https://github.com/zeldaret/oot.git
synced 2025-07-08 08:55:17 +00:00
Run format.sh
This commit is contained in:
parent
d0cf6e153b
commit
0c0c15018f
6 changed files with 21 additions and 41 deletions
|
@ -1,12 +1,10 @@
|
|||
#include <global.h>
|
||||
|
||||
void PrintUtils_VPrintf(char** arg0, const char* fmt, va_list args)
|
||||
{
|
||||
void PrintUtils_VPrintf(char** arg0, const char* fmt, va_list args) {
|
||||
_Printf(*arg0, arg0, fmt, args);
|
||||
}
|
||||
|
||||
void PrintUtils_Printf(void* arg0, const char* fmt, ...)
|
||||
{
|
||||
void PrintUtils_Printf(void* arg0, const char* fmt, ...) {
|
||||
va_list args;
|
||||
va_start(args, fmt);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue