mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-26 07:18:50 -04:00
11 lines
158 B
C
11 lines
158 B
C
#ifndef MSL_PRINTF_H
|
|
#define MSL_PRINTF_H
|
|
|
|
#include "types.h"
|
|
#include "va_args.h"
|
|
|
|
|
|
void vprintf(const char*, va_list);
|
|
void print(const char*, ...);
|
|
|
|
#endif |