Lines Matching full:stream
42 int fclose(FILE* stream);
43 int fflush(FILE* stream);
46 FILE * restrict stream);
47 void setbuf(FILE* restrict stream, char* restrict buf);
48 int setvbuf(FILE* restrict stream, char* restrict buf, int mode, size_t size);
49 int fprintf(FILE* restrict stream, const char* restrict format, ...);
50 int fscanf(FILE* restrict stream, const char * restrict format, ...);
56 int vfprintf(FILE* restrict stream, const char* restrict format, va_list arg);
57 int vfscanf(FILE* restrict stream, const char* restrict format, va_list arg); // C99
64 int fgetc(FILE* stream);
65 char* fgets(char* restrict s, int n, FILE* restrict stream);
66 int fputc(int c, FILE* stream);
67 int fputs(const char* restrict s, FILE* restrict stream);
68 int getc(FILE* stream);
71 int putc(int c, FILE* stream);
74 int ungetc(int c, FILE* stream);
76 FILE* restrict stream);
78 FILE* restrict stream);
79 int fgetpos(FILE* restrict stream, fpos_t* restrict pos);
80 int fseek(FILE* stream, long offset, int whence);
81 int fsetpos(FILE*stream, const fpos_t* pos);
82 long ftell(FILE* stream);
83 void rewind(FILE* stream);
84 void clearerr(FILE* stream);
85 int feof(FILE* stream);
86 int ferror(FILE* stream);