stdio.h 243 B

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