#ifndef CSTDIO_H
#define CSTDIO_H

#ifdef __cplusplus
extern "C" {
#endif

#include <file_struct.h>
#include <va_list.h>
#include <cstring>


int sprintf(char *pStr, const char *pFormat, ...);
int snprintf(char *pStr, size_t n, const char *pFormat, ...);
int vprintf(const char *, va_list);
int vsnprintf(char *, size_t, const char *, va_list);

int sscanf(const char *, const char *, ...);

int fclose(FILE *);
int fflush(FILE *);

#ifdef __cplusplus
}
#endif

#endif // CSTDIO_H