====== stdio.h ====== ^ Function ^ Description ^ | [[c:stdio.h:BUFSIZ|BUFSIZ]] |(integer value) size of the buffer | | [[c:stdio.h:clearerr|]] |Clears end-of-file and error indicators for a stream | | [[c:stdio.h:fclose|]] |Close the current stream / file | | [[c:stdio.h:feof|]] |Checks for the end-of-file | | [[c:stdio.h:ferror|]] |Checks for a stream error | | [[c:stdio.h:fflush|]] |Synchronises an output stream with the actual file | | [[c:stdio.h:fgetc|]] |Reads a byte/char from a file stream | | [[c:stdio.h:fgetpos|]] |Gets the stream position indicator | | [[c:stdio.h:fgets|]] |Reads a byte/char string from a file stream | | [[c:stdio.h:fopen|]] |Open a stream | | [[c:stdio.h:fprintf|]] |Print formatted byte/char output to a stream, | | [[c:stdio.h:fputc|]] |Writes byte/char to a stream | | [[c:stdio.h:fputs|]] |Writes byte/char string to a stream | | [[c:stdio.h:fread|]] |Reads X number of objects from a stream | | [[c:stdio.h:freopen|]] |Closes file associated with stream, then opens file file name with specified mode and associates it with stream. | | [[c:stdio.h:fscanf|]] |Formatted reading from a stram | | [[c:stdio.h:fseek|]] |Move the file position indicator to a specific location in a stream | | [[c:stdio.h:fsetpos|]] |Move the file position indicator to a specific location in a stream | | [[c:stdio.h:ftell|]] |Returns the current file position indicator | | [[c:stdio.h:fwrite|]] |Writes X number of objects from a stream | | [[c:stdio.h:getc|]] |Reads a byte/char from a stream | | [[c:stdio.h:getchar|]] |Reads a byte/char from stdin | | [[c:stdio.h:gets|]] |Reads a byte string from stdin | | [[c:stdio.h:perror|]] |Prints current character value strerror(errno) to stderrr | | [[c:stdio.h:printf|]] |Prints formatted output to stdout | | [[c:stdio.h:putc|]] |Writes a byte/char to a stream | | [[c:stdio.h:putchar|]] |Writes a byte/char to stdout | | [[c:stdio.h:puts|]] |Writes a byte/char string to stdout | | [[c:stdio.h:remove|]] |Deletes a file | | [[c:stdio.h:rename|]] |Rename a file | | [[c:stdio.h:rewind|]] |Moves the file position indicator to the beginning (OL) in a file | | [[c:stdio.h:scanf|]] |Reads formatted byte/char input from stdin | | [[c:stdio.h:setbuf|]] |Sets the buffer for a stream | | [[c:stdio.h:setvbuf|]] |Sets the buffer for a stream | | [[c:stdio.h:sprintf|]] |Prints formatted byte/char to stdout | | [[c:stdio.h:sscanf|]] |Reads formatted byte/char input from stdin, | | [[c:stdio.h:tmpfile|]] |Returns a pointer to a temporary file | | [[c:stdio.h:tmpnam|]] |Returns a unique filename | | [[c:stdio.h:ungetc|]] |Puts a byte/char back (push-back) into a stream | | [[c:stdio.h:vfprintf|]] |Prints formatted byte/char output to a stream using variable aguments | | [[c:stdio.h:vprintf|]] |Prints formatted byte/char output to stdout using variable aguments | | [[c:stdio.h:vsprintf|]] |Prints formatted byte/char output to a stream using variable aguments |