mirror of
https://github.com/zeldaret/oot-vc.git
synced 2026-09-26 13:33:20 -04:00
b28c406d4a
* started libc * progress * format * match file_io.c * match mem_funcs and math_api * printf prog and match strtoul.c * format * match bsearch.c * match ansi_fp.c * make USE_CURRENT_LOCALE a global define * started time.c * match the printf function * add splits for oot-u and oot-e * cleanup * review
24 lines
451 B
C
24 lines
451 B
C
#ifndef _PRINTF_H
|
|
#define _PRINTF_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "stdarg.h"
|
|
#include "stdio.h"
|
|
|
|
int printf(const char* format, ...);
|
|
int fprintf(FILE*, const char* format, ...);
|
|
int vprintf(const char*, va_list);
|
|
int vsnprintf(char*, size_t, const char*, va_list);
|
|
int vsprintf(char*, const char*, va_list);
|
|
int snprintf(char*, size_t, const char*, ...);
|
|
int sprintf(char*, const char*, ...);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|