mirror of
https://github.com/zeldaret/tp
synced 2026-06-01 09:47:52 -04:00
589cc12296
* wip * bunch of MSL_C files thanks to pikmin2 decomp for their work * format / asm * progress * fix * fix remove-asm to work with C files * init / start
18 lines
279 B
C
18 lines
279 B
C
#ifndef MSL_COMMON_SRC_CHAR_IO_H
|
|
#define MSL_COMMON_SRC_CHAR_IO_H
|
|
|
|
#include "MSL_C/MSL_Common/Src/ansi_files.h"
|
|
#include "dolphin/types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int fputs(const char*, FILE*);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* MSL_COMMON_SRC_CHAR_IO_H */
|