Prechádzať zdrojové kódy

Add *scanf to header

jD91mZM2 6 rokov pred
rodič
commit
91221645c5
1 zmenil súbory, kde vykonal 3 pridanie a 0 odobranie
  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 */