Files
2025-06-23 20:33:48 +03:00

23 lines
371 B
C

#ifndef _STDIO_H_
#define _STDIO_H_
#include <stdarg.h>
#ifdef __cplusplus
extern "C" {
#endif
#include "MSL_C/ansi_files.h"
int puts(const char *s);
int printf(const char *, ...);
int sprintf(char *s, const char *format, ...);
int vprintf(const char *format, va_list arg);
int vsprintf(char *s, const char *format, va_list arg);
#ifdef __cplusplus
}
#endif
#endif