Linux libc-Doku
stdio.h File Reference
| Functions | |
| FILE * | fopen (const char *pathname, const char *mode) | 
| Open a file.  More... | |
| int | fclose (FILE *fp) | 
| Close a file.  More... | |
| int | printf (const char *format,...) | 
| Print formatted data to stdoutMore... | |
| int | fprintf (FILE *stream, const char *format,...) | 
| Print formatted data to stream.  More... | |
| int | fgetc (FILE *stream) | 
| Read a character.  More... | |
| char * | fgets (char *s, int size, FILE *stream) | 
| Read a string.  More... | |
| int | fputc (int c, FILE *stream) | 
| Write a character.  More... | |
| int | fputs (const char *s, FILE *stream) | 
| Write a string.  More... | |
| void | perror (const char *s) | 
| Print an error message.  More... | |
| int | feof (FILE *stream) | 
| Test end-of-file indicator of a file stream.  More... | |
| int | ferror (FILE *stream) | 
| Test error indicator of a file stream.  More... | |