瀏覽代碼

Add *scanf to header

jD91mZM2 6 年之前
父節點
當前提交
91221645c5
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      include/bits/stdio.h

+ 3 - 0
include/bits/stdio.h

@@ -7,5 +7,8 @@ int fprintf(FILE * stream, const char * fmt, ...);
 int printf(const char * fmt, ...);
 int snprintf(char *s, size_t n, const char * fmt, ...);
 int sprintf(char *s, const char * fmt, ...);
+int fscanf(FILE * stream, const char * fmt, ...);
+int scanf(const char * fmt, ...);
+int sscanf(const char * input, const char * fmt, ...);
 
 #endif /* _BITS_STDIO_H */