mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 14:41:38 -04:00
21 lines
309 B
C
21 lines
309 B
C
#ifndef APRINTF_H
|
|
#define APRINTF_H
|
|
|
|
#include "types.h"
|
|
#include "va_args.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"{
|
|
#endif
|
|
|
|
typedef struct {
|
|
void* (*prout_func)(void*, const char*, int);
|
|
} aprout_func_t;
|
|
|
|
extern int vaprintf(aprout_func_t* func, const char* fmt, va_list ap);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|