Implement & link famicom.cpp

This commit is contained in:
Cuyler36
2024-01-29 20:31:47 -05:00
parent 7788f50a59
commit d08076381b
39 changed files with 4048 additions and 119 deletions
+8 -2
View File
@@ -1,8 +1,14 @@
#ifndef SPRINTF_H
#define SPRINTF_H
#include "types.h"
#ifdef __cplusplus
extern "C" {
#endif
s32 sprintf(char* dst, const char* fmt, ...);
int sprintf(char* dst, const char* fmt, ...);
#ifdef __cplusplus
}
#endif
#endif