|
SSBM Decomp
|
Go to the source code of this file.
Data Structures | |
| struct | __file_modes |
| struct | __file_state |
| struct | FILE |
| struct | __OutStrCtrl |
| struct | __InStrCtrl |
Macros | |
| #define | SEEK_SET 0 |
| #define | SEEK_CUR 1 |
| #define | SEEK_END 2 |
| #define | __ungetc_buffer_size 2 |
| #define | EOF -1L |
| #define | _IONBF 0 |
| #define | _IOLBF 1 |
| #define | _IOFBF 2 |
| #define | stdin (&__files[0]) |
| #define | stdout (&__files[1]) |
| #define | stderr (&__files[2]) |
Typedefs | |
| typedef unsigned long | __file_handle |
| typedef unsigned long | fpos_t |
| typedef void(* | __idle_proc) (void) |
| typedef int(* | __pos_proc) (__file_handle file, fpos_t *position, int mode, __idle_proc idle_proc) |
| typedef int(* | __io_proc) (__file_handle file, unsigned char *buff, size_t *count, __idle_proc idle_proc) |
| typedef int(* | __close_proc) (__file_handle file) |
Enumerations | |
| enum | __io_modes { __read = 1 , __write = 2 , __read_write = 3 , __append = 4 } |
| enum | __file_kinds { __closed_file , __disk_file , __console_file , __unavailable_file } |
| enum | __file_orientation { __unoriented , __char_oriented , __wide_oriented } |
| enum | __io_results { __no_io_error , __io_error , __io_EOF } |
| enum | __io_states { __neutral , __writing , __reading , __rereading } |
| enum | __ReadProcActions { __GetAChar , __UngetAChar , __TestForError } |
Functions | |
| int | __StringRead (void *str, int ch, int behavior) |
| int | printf (const char *format,...) |
| int | sprintf (char *s, const char *format,...) |
| int | vprintf (const char *format, va_list arg) |
| int | vsprintf (char *s, const char *format, va_list arg) |
| size_t | fwrite (const void *, size_t memb_size, size_t num_memb, FILE *) |
Variables | |
| FILE | __files [3] |
| #define SEEK_SET 0 |
| #define SEEK_CUR 1 |
| #define SEEK_END 2 |
| #define __ungetc_buffer_size 2 |
| #define EOF -1L |
| #define _IONBF 0 |
| #define _IOLBF 1 |
| #define _IOFBF 2 |
| #define stdin (&__files[0]) |
| #define stdout (&__files[1]) |
| #define stderr (&__files[2]) |
| typedef unsigned long __file_handle |
| typedef unsigned long fpos_t |
| typedef void(* __idle_proc) (void) |
| typedef int(* __pos_proc) (__file_handle file, fpos_t *position, int mode, __idle_proc idle_proc) |
| typedef int(* __io_proc) (__file_handle file, unsigned char *buff, size_t *count, __idle_proc idle_proc) |
| typedef int(* __close_proc) (__file_handle file) |
| enum __io_modes |
| enum __file_kinds |
| enum __file_orientation |
| enum __io_results |
| enum __io_states |
| enum __ReadProcActions |
| int __StringRead | ( | void * | str, |
| int | ch, | ||
| int | behavior ) |
| int printf | ( | const char * | format, |
| ... ) |
| int sprintf | ( | char * | s, |
| const char * | format, | ||
| ... ) |
| int vprintf | ( | const char * | format, |
| va_list | arg ) |
| int vsprintf | ( | char * | s, |
| const char * | format, | ||
| va_list | arg ) |
|
extern |