Files
Yanis b28c406d4a Match most of libc (#80)
* 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
2025-05-11 14:58:29 +02:00

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