llvm-mos-sdk
|
#include <stdarg.h>
#include <stddef.h>
#include <stdint.h>
Go to the source code of this file.
Macros | |
#define | BUFSIZ 256 |
#define | EOF (-1) |
#define | FOPEN_MAX 8 |
#define | _IOFBF (1u << 0) |
#define | _IOLBF (1u << 1) |
#define | _IONBF (1u << 2) |
#define | L_tmpnam 6 |
#define | SEEK_SET 0 |
#define | SEEK_CUR 1 |
#define | SEEK_END 2 |
#define | TMP_MAX 25 |
Typedefs | |
typedef struct _FILE | FILE |
typedef uint32_t | fpos_t |
Functions | |
int | remove (const char *filename) |
int | rename (const char *old, const char *_new) |
FILE * | tmpfile (void) |
char * | tmpnam (char *s) |
int | fclose (FILE *stream) |
int | fflush (FILE *stream) |
FILE * | fopen (const char *__restrict__ filename, const char *__restrict__ mode) |
FILE * | freopen (const char *__restrict__ filename, const char *__restrict__ mode, FILE *__restrict__ stream) |
void | setbuf (FILE *__restrict__ stream, char *__restrict__ buf) |
int | setvbuf (FILE *__restrict__ stream, char *__restrict__ buf, int mode, size_t size) |
int | fprintf (FILE *__restrict__ stream, const char *__restrict__ format,...) |
int | fscanf (FILE *__restrict__ stream, const char *__restrict__ format,...) |
int | printf (const char *__restrict__ format,...) |
int | scanf (const char *__restrict__ format,...) |
int | snprintf (char *__restrict__ s, size_t n, const char *__restrict__ format,...) |
int | sprintf (char *__restrict__ s, const char *__restrict__ format,...) |
int | sscanf (const char *__restrict__ s, const char *__restrict__ format,...) |
int | vfprintf (FILE *__restrict__ stream, const char *__restrict__ format, va_list arg) |
int | vfscanf (FILE *__restrict__ stream, const char *__restrict__ format, va_list arg) |
int | vprintf (const char *__restrict__ format, va_list arg) |
int | vscanf (const char *__restrict__ format, va_list arg) |
int | vsnprintf (char *__restrict__ s, size_t n, const char *__restrict__ format, va_list arg) |
int | vsprintf (char *__restrict__ s, const char *__restrict__ format, va_list arg) |
int | vsscanf (const char *__restrict__ s, const char *__restrict__ format, va_list arg) |
int | fgetc (FILE *stream) |
char * | fgets (char *__restrict__ s, int n, FILE *__restrict__ stream) |
int | fputc (int c, FILE *stream) |
int | fputs (const char *__restrict__ s, FILE *__restrict__ stream) |
int | getc (FILE *stream) |
int | getchar (void) |
int | putc (int c, FILE *stream) |
int | putchar (int c) |
int | puts (const char *s) |
int | ungetc (int c, FILE *stream) |
size_t | fread (void *__restrict ptr, size_t size, size_t nmemb, FILE *__restrict__ stream) |
size_t | fwrite (const void *__restrict ptr, size_t size, size_t nmemb, FILE *__restrict__ stream) |
int | fgetpos (FILE *__restrict__ stream, fpos_t *__restrict__ pos) |
int | fseek (FILE *stream, long int offset, int whence) |
int | fsetpos (FILE *stream, const fpos_t *pos) |
long int | ftell (FILE *stream) |
void | rewind (FILE *stream) |
void | clearerr (FILE *stream) |
int | feof (FILE *stream) |
int | ferror (FILE *stream) |
void | perror (const char *s) |
Variables | |
FILE * | stdin |
FILE * | stdout |
FILE * | stderr |
void * | ctx |
void int(* | write )(char c, void *ctx)) |
int(* | read )(void *ctx)) |
#define _IOFBF (1u << 0) |
#define _IOLBF (1u << 1) |
#define _IONBF (1u << 2) |
#define BUFSIZ 256 |
#define EOF (-1) |
#define FOPEN_MAX 8 |
#define L_tmpnam 6 |
#define SEEK_CUR 1 |
#define SEEK_END 2 |
#define SEEK_SET 0 |
#define TMP_MAX 25 |
typedef struct _FILE FILE |
typedef uint32_t fpos_t |
void clearerr | ( | FILE * | stream | ) |
int fclose | ( | FILE * | stream | ) |
int feof | ( | FILE * | stream | ) |
int ferror | ( | FILE * | stream | ) |
int fflush | ( | FILE * | stream | ) |
int fgetc | ( | FILE * | stream | ) |
char* fgets | ( | char *__restrict__ | s, |
int | n, | ||
FILE *__restrict__ | stream | ||
) |
FILE* fopen | ( | const char *__restrict__ | filename, |
const char *__restrict__ | mode | ||
) |
int fprintf | ( | FILE *__restrict__ | stream, |
const char *__restrict__ | format, | ||
... | |||
) |
int fputc | ( | int | c, |
FILE * | stream | ||
) |
int fputs | ( | const char *__restrict__ | s, |
FILE *__restrict__ | stream | ||
) |
FILE* freopen | ( | const char *__restrict__ | filename, |
const char *__restrict__ | mode, | ||
FILE *__restrict__ | stream | ||
) |
int fscanf | ( | FILE *__restrict__ | stream, |
const char *__restrict__ | format, | ||
... | |||
) |
int fseek | ( | FILE * | stream, |
long int | offset, | ||
int | whence | ||
) |
long int ftell | ( | FILE * | stream | ) |
int getc | ( | FILE * | stream | ) |
int getchar | ( | void | ) |
void perror | ( | const char * | s | ) |
int printf | ( | const char *__restrict__ | format, |
... | |||
) |
int putc | ( | int | c, |
FILE * | stream | ||
) |
int putchar | ( | int | c | ) |
int puts | ( | const char * | s | ) |
int remove | ( | const char * | filename | ) |
int rename | ( | const char * | old, |
const char * | _new | ||
) |
void rewind | ( | FILE * | stream | ) |
int scanf | ( | const char *__restrict__ | format, |
... | |||
) |
void setbuf | ( | FILE *__restrict__ | stream, |
char *__restrict__ | buf | ||
) |
int snprintf | ( | char *__restrict__ | s, |
size_t | n, | ||
const char *__restrict__ | format, | ||
... | |||
) |
int sprintf | ( | char *__restrict__ | s, |
const char *__restrict__ | format, | ||
... | |||
) |
int sscanf | ( | const char *__restrict__ | s, |
const char *__restrict__ | format, | ||
... | |||
) |
FILE* tmpfile | ( | void | ) |
char* tmpnam | ( | char * | s | ) |
int ungetc | ( | int | c, |
FILE * | stream | ||
) |
int vfprintf | ( | FILE *__restrict__ | stream, |
const char *__restrict__ | format, | ||
va_list | arg | ||
) |
int vfscanf | ( | FILE *__restrict__ | stream, |
const char *__restrict__ | format, | ||
va_list | arg | ||
) |
int vprintf | ( | const char *__restrict__ | format, |
va_list | arg | ||
) |
int vscanf | ( | const char *__restrict__ | format, |
va_list | arg | ||
) |
int vsnprintf | ( | char *__restrict__ | s, |
size_t | n, | ||
const char *__restrict__ | format, | ||
va_list | arg | ||
) |
int vsprintf | ( | char *__restrict__ | s, |
const char *__restrict__ | format, | ||
va_list | arg | ||
) |
int vsscanf | ( | const char *__restrict__ | s, |
const char *__restrict__ | format, | ||
va_list | arg | ||
) |
void* ctx |
int(* read) (void *ctx)) |
FILE* stderr |
FILE* stdin |
FILE* stdout |