| fopen() |
creates a new file for use or opens an existing file for use. |
| fclose() |
close a file which has been opened for use. |
| getc() |
reads a character to a file. |
| putc() |
writes a character to a line. |
| fprintf() |
writes a set of data values to a file. |
| fscanf() |
reads a set of data values from a file. |
| getw() |
reads an integer from a file. |
| putw() |
writes an integer to a file. |
| feof() |
test for an end of file condition. |