#include <ccpp/bits/config.h>#include <ccpp/bits/null.h>#include <ccpp/bits/size_t.h>#include <ccpp/bits/va_list.h>Go to the source code of this file.
Macros | |
| #define | _IOFBF 1 |
| #define | _IOLBF 2 |
| #define | _IONBF 0 |
| #define | BUFSIZ 16384 |
| #define | FILENAME_MAX 4096 |
| #define | FOPEN_MAX 1024 |
| #define | TMP_MAX 100000 |
| #define | L_tmpnam 32 |
| #define | EOF (-1) |
Typedefs | |
| typedef struct __file_implementation | FILE |
| typedef __UINT64_TYPE__ | fpos_t |
Functions | |
| FILE * | fopen (char const *__CCPP_RESTRICT __path, char const *__CCPP_RESTRICT __mode) |
| FILE * | fdopen (int __fd, char const *__mode) |
| FILE * | freopen (char const *__CCPP_RESTRICT __path, char const *__CCPP_RESTRICT __mode, FILE *__CCPP_RESTRICT __file) |
| int | fclose (FILE *__file) |
| int | fflush (FILE *__file) |
| void | setbuf (FILE *__CCPP_RESTRICT __file, char *__CCPP_RESTRICT __buffer) |
| int | setvbuf (FILE *__CCPP_RESTRICT __file, char *__CCPP_RESTRICT __buffer, int __mode, size_t __size) |
| int | fileno (FILE *__file) |
| int | fileno_unlocked (FILE *__file) |
| size_t | fread (void *__CCPP_RESTRICT __buffer, size_t __size, size_t __count, FILE *__CCPP_RESTRICT __file) |
| size_t | fwrite (void const *__CCPP_RESTRICT __buffer, size_t __size, size_t __count, FILE *__CCPP_RESTRICT __file) |
| int | fgetc (FILE *__file) |
| int | getc (FILE *__file) |
| char * | fgets (char *__CCPP_RESTRICT __str, int __count, FILE *__CCPP_RESTRICT __file) |
| int | fputc (int __ch, FILE *__file) |
| int | putc (int __ch, FILE *__file) |
| int | fputs (char const *__CCPP_RESTRICT __str, FILE *__CCPP_RESTRICT __file) |
| int | getchar (void) |
| char * | gets (char *__str) |
| int | putchar (int __ch) |
| int | puts (char const *__str) |
| int | ungetc (int __ch, FILE *__file) |
| int | getc_unlocked (FILE *__file) |
| int | getchar_unlocked (void) |
| int | putc_unlocked (int __ch, FILE *__file) |
| int | putchar_unlocked (int __ch) |
| void | clearerr_unlocked (FILE *__file) |
| int | feof_unlocked (FILE *__file) |
| int | ferror_unlocked (FILE *__file) |
| int | fflush_unlocked (FILE *__file) |
| int | fputc_unlocked (int __ch, FILE *__file) |
| int | fgetc_unlocked (FILE *__file) |
| size_t | fread_unlocked (void *__CCPP_RESTRICT __buffer, size_t __size, size_t __count, FILE *__CCPP_RESTRICT __file) |
| size_t | fwrite_unlocked (void const *__CCPP_RESTRICT __buffer, size_t __size, size_t __count, FILE *__CCPP_RESTRICT __file) |
| char * | fgets_unlocked (char *__CCPP_RESTRICT __str, int __count, FILE *__CCPP_RESTRICT __file) |
| int | fputs_unlocked (char const *__CCPP_RESTRICT __str, FILE *__CCPP_RESTRICT __file) |
| int | scanf (char const *__CCPP_RESTRICT __format,...) |
| int | fscanf (FILE *__CCPP_RESTRICT __file, char const *__CCPP_RESTRICT __format,...) |
| int | sscanf (char const *__CCPP_RESTRICT __buffer, char const *__CCPP_RESTRICT __format,...) |
| int | printf (char const *__CCPP_RESTRICT __format,...) |
| int | fprintf (FILE *__CCPP_RESTRICT __file, char const *__CCPP_RESTRICT __format,...) |
| int | sprintf (char *__CCPP_RESTRICT __buffer, char const *__CCPP_RESTRICT __format,...) |
| int | vprintf (char const *__CCPP_RESTRICT __format, va_list __args) |
| int | vfprintf (FILE *__CCPP_RESTRICT __file, char const *__CCPP_RESTRICT __format, va_list __args) |
| int | vsprintf (char *__CCPP_RESTRICT __buffer, char const *__CCPP_RESTRICT __format, va_list __args) |
| long | ftell (FILE *__file) |
| int | fgetpos (FILE *__CCPP_RESTRICT __file, fpos_t *__CCPP_RESTRICT __pos) |
| int | fseek (FILE *__file, long __offset, int __origin) |
| int | fsetpos (FILE *__file, fpos_t const *__pos) |
| void | rewind (FILE *__file) |
| void | clearerr (FILE *__file) |
| int | feof (FILE *__file) |
| int | ferror (FILE *__file) |
| void | perror (char const *__str) |
| int | remove (char const *__path) |
| int | rename (char const *__old_path, char const *__new_path) |
| FILE * | tmpfile (void) |
| char * | tmpnam (char *__path) |
Variables | |
| FILE * | stdin |
| FILE * | stdout |
| FILE * | stderr |
| #define _IOFBF 1 |
| #define _IOLBF 2 |
| #define _IONBF 0 |
| #define BUFSIZ 16384 |
| #define EOF (-1) |
| #define FILENAME_MAX 4096 |
| #define FOPEN_MAX 1024 |
| #define L_tmpnam 32 |
| #define TMP_MAX 100000 |
| typedef struct __file_implementation FILE |
| typedef __UINT64_TYPE__ fpos_t |
| void clearerr | ( | FILE * | __file | ) |
| void clearerr_unlocked | ( | FILE * | __file | ) |
| int fclose | ( | FILE * | __file | ) |
| FILE * fdopen | ( | int | __fd, |
| char const * | __mode ) |
| int feof | ( | FILE * | __file | ) |
| int feof_unlocked | ( | FILE * | __file | ) |
| int ferror | ( | FILE * | __file | ) |
| int ferror_unlocked | ( | FILE * | __file | ) |
| int fflush | ( | FILE * | __file | ) |
| int fflush_unlocked | ( | FILE * | __file | ) |
| int fgetc | ( | FILE * | __file | ) |
| int fgetc_unlocked | ( | FILE * | __file | ) |
| int fgetpos | ( | FILE *__CCPP_RESTRICT | __file, |
| fpos_t *__CCPP_RESTRICT | __pos ) |
| char * fgets | ( | char *__CCPP_RESTRICT | __str, |
| int | __count, | ||
| FILE *__CCPP_RESTRICT | __file ) |
| char * fgets_unlocked | ( | char *__CCPP_RESTRICT | __str, |
| int | __count, | ||
| FILE *__CCPP_RESTRICT | __file ) |
| int fileno | ( | FILE * | __file | ) |
| int fileno_unlocked | ( | FILE * | __file | ) |
| FILE * fopen | ( | char const *__CCPP_RESTRICT | __path, |
| char const *__CCPP_RESTRICT | __mode ) |
| int fprintf | ( | FILE *__CCPP_RESTRICT | __file, |
| char const *__CCPP_RESTRICT | __format, | ||
| ... ) |
| int fputc | ( | int | __ch, |
| FILE * | __file ) |
| int fputc_unlocked | ( | int | __ch, |
| FILE * | __file ) |
| int fputs | ( | char const *__CCPP_RESTRICT | __str, |
| FILE *__CCPP_RESTRICT | __file ) |
| int fputs_unlocked | ( | char const *__CCPP_RESTRICT | __str, |
| FILE *__CCPP_RESTRICT | __file ) |
| size_t fread | ( | void *__CCPP_RESTRICT | __buffer, |
| size_t | __size, | ||
| size_t | __count, | ||
| FILE *__CCPP_RESTRICT | __file ) |
| size_t fread_unlocked | ( | void *__CCPP_RESTRICT | __buffer, |
| size_t | __size, | ||
| size_t | __count, | ||
| FILE *__CCPP_RESTRICT | __file ) |
| FILE * freopen | ( | char const *__CCPP_RESTRICT | __path, |
| char const *__CCPP_RESTRICT | __mode, | ||
| FILE *__CCPP_RESTRICT | __file ) |
| int fscanf | ( | FILE *__CCPP_RESTRICT | __file, |
| char const *__CCPP_RESTRICT | __format, | ||
| ... ) |
| int fseek | ( | FILE * | __file, |
| long | __offset, | ||
| int | __origin ) |
| long ftell | ( | FILE * | __file | ) |
| size_t fwrite | ( | void const *__CCPP_RESTRICT | __buffer, |
| size_t | __size, | ||
| size_t | __count, | ||
| FILE *__CCPP_RESTRICT | __file ) |
| size_t fwrite_unlocked | ( | void const *__CCPP_RESTRICT | __buffer, |
| size_t | __size, | ||
| size_t | __count, | ||
| FILE *__CCPP_RESTRICT | __file ) |
| int getc | ( | FILE * | __file | ) |
| int getc_unlocked | ( | FILE * | __file | ) |
| int getchar | ( | void | ) |
| int getchar_unlocked | ( | void | ) |
| char * gets | ( | char * | __str | ) |
| void perror | ( | char const * | __str | ) |
| int printf | ( | char const *__CCPP_RESTRICT | __format, |
| ... ) |
| int putc | ( | int | __ch, |
| FILE * | __file ) |
| int putc_unlocked | ( | int | __ch, |
| FILE * | __file ) |
| int putchar | ( | int | __ch | ) |
| int putchar_unlocked | ( | int | __ch | ) |
| int puts | ( | char const * | __str | ) |
| int remove | ( | char const * | __path | ) |
| int rename | ( | char const * | __old_path, |
| char const * | __new_path ) |
| void rewind | ( | FILE * | __file | ) |
| int scanf | ( | char const *__CCPP_RESTRICT | __format, |
| ... ) |
| void setbuf | ( | FILE *__CCPP_RESTRICT | __file, |
| char *__CCPP_RESTRICT | __buffer ) |
| int setvbuf | ( | FILE *__CCPP_RESTRICT | __file, |
| char *__CCPP_RESTRICT | __buffer, | ||
| int | __mode, | ||
| size_t | __size ) |
| int sprintf | ( | char *__CCPP_RESTRICT | __buffer, |
| char const *__CCPP_RESTRICT | __format, | ||
| ... ) |
| int sscanf | ( | char const *__CCPP_RESTRICT | __buffer, |
| char const *__CCPP_RESTRICT | __format, | ||
| ... ) |
| FILE * tmpfile | ( | void | ) |
| char * tmpnam | ( | char * | __path | ) |
| int ungetc | ( | int | __ch, |
| FILE * | __file ) |
| int vfprintf | ( | FILE *__CCPP_RESTRICT | __file, |
| char const *__CCPP_RESTRICT | __format, | ||
| va_list | __args ) |
| int vprintf | ( | char const *__CCPP_RESTRICT | __format, |
| va_list | __args ) |
| int vsprintf | ( | char *__CCPP_RESTRICT | __buffer, |
| char const *__CCPP_RESTRICT | __format, | ||
| va_list | __args ) |
|
extern |
|
extern |
|
extern |