stdio.h 336 B

123456789101112131415161718192021
  1. #ifndef __GBLIBC_STDIO_H_
  2. #define __GBLIBC_STDIO_H_
  3. #include <stdarg.h>
  4. #include <stdint.h>
  5. #undef EOF
  6. #define EOF (-1)
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10. int vsnprintf(char* buf, size_t bufsize, const char* fmt, va_list args);
  11. int snprintf(char* buf, size_t bufsize, const char* fmt, ...);
  12. #ifdef __cplusplus
  13. }
  14. #endif
  15. #endif