Files
ss/include/MSL_C/MSL_Common/Src/printf.h
T
2023-12-21 10:44:16 -05:00

23 lines
573 B
C

#ifndef MSL_COMMON_SRC_PRINTF_H
#define MSL_COMMON_SRC_PRINTF_H
#include "MSL_C/MSL_Common/Src/ansi_files.h"
#include "Runtime/__va_arg.h"
#ifdef __cplusplus
extern "C" {
#endif
int fprintf(FILE *stream, const char *format, ...);
int printf(const char *format, ...);
int sprintf(const char *str, const char *format, ...);
int snprintf(const char *str, size_t n, const char *format, ...);
int vsnprintf(char *str, size_t n, const char *format, va_list arg);
int vprintf(const char *format, va_list arg);
#ifdef __cplusplus
}
#endif
#endif /* MSL_COMMON_SRC_PRINTF_H */