Ver Fonte

Add *scanf to header

jD91mZM2 há 6 anos atrás
pai
commit
91221645c5
1 ficheiros alterados com 3 adições e 0 exclusões
  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 */