Files
ac-decomp/include/MSL_C/printf.h
T
2025-06-23 20:33:48 +03:00

22 lines
412 B
C

#ifndef MSL_PRINTF_H
#define MSL_PRINTF_H
#include "stddef.h"
#include "libc/stdarg.h"
#ifdef __cplusplus
extern "C" {
#endif
extern int vprintf(const char*, va_list);
extern int vsprintf(char*, const char*, va_list);
extern int vsnprintf(char*, size_t, const char*, va_list);
extern int printf(const char*, ...);
int snprintf(char* s, size_t n, const char* format, ...);
#ifdef __cplusplus
}
#endif
#endif