mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 09:05:06 +01:00
25 lines
281 B
C
25 lines
281 B
C
|
|
||
|
#ifndef _FMT_H_
|
||
|
#define _FMT_H_
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
enum {
|
||
|
MAX_MSG_SIZE = 1024,
|
||
|
MAX_USES = 8,
|
||
|
};
|
||
|
|
||
|
char *fmt(const char *format, ...);
|
||
|
void Asciify(wchar_t *str);
|
||
|
void Asciify2(char *str);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif //_FMT_H_
|