Lines Matching full:stream
53 int fclose(FILE* stream);
54 int fflush(FILE* stream);
57 FILE * restrict stream);
58 void setbuf(FILE* restrict stream, char* restrict buf);
59 int setvbuf(FILE* restrict stream, char* restrict buf, int mode, size_t size);
60 int fprintf(FILE* restrict stream, const char* restrict format, ...);
61 int fscanf(FILE* restrict stream, const char * restrict format, ...);
67 int vfprintf(FILE* restrict stream, const char* restrict format, va_list arg);
68 int vfscanf(FILE* restrict stream, const char* restrict format, va_list arg); // C99
75 int fgetc(FILE* stream);
76 char* fgets(char* restrict s, int n, FILE* restrict stream);
77 int fputc(int c, FILE* stream);
78 int fputs(const char* restrict s, FILE* restrict stream);
79 int getc(FILE* stream);
82 int putc(int c, FILE* stream);
85 int ungetc(int c, FILE* stream);
87 FILE* restrict stream);
89 FILE* restrict stream);
90 int fgetpos(FILE* restrict stream, fpos_t* restrict pos);
91 int fseek(FILE* stream, long offset, int whence);
92 int fsetpos(FILE*stream, const fpos_t* pos);
93 long ftell(FILE* stream);
94 void rewind(FILE* stream);
95 void clearerr(FILE* stream);
96 int feof(FILE* stream);
97 int ferror(FILE* stream);