Files
2025-01-18 07:09:37 -05:00

21 lines
312 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