#include <stdint.h>
#include <string.h>
#include <retro_common_api.h>
#include <streams/file_stream.h>
Go to the source code of this file.
|
RFILE * | rfopen (const char *path, const char *mode) |
|
int | rfclose (RFILE *stream) |
|
int64_t | rftell (RFILE *stream) |
|
int64_t | rfseek (RFILE *stream, int64_t offset, int origin) |
|
int64_t | rfread (void *buffer, size_t elem_size, size_t elem_count, RFILE *stream) |
|
char * | rfgets (char *buffer, int maxCount, RFILE *stream) |
|
int | rfgetc (RFILE *stream) |
|
int64_t | rfwrite (void const *buffer, size_t elem_size, size_t elem_count, RFILE *stream) |
|
int | rfputc (int character, RFILE *stream) |
|
int64_t | rfflush (RFILE *stream) |
|
int | rfprintf (RFILE *stream, const char *format,...) |
|
int | rferror (RFILE *stream) |
|
int | rfeof (RFILE *stream) |
|
int | rfscanf (RFILE *stream, const char *format,...) |
|
◆ fclose
◆ feof
◆ ferror
◆ fflush
◆ fgetc
◆ fgets
◆ FILE
◆ fopen
◆ fprintf
◆ fputc
◆ fread
◆ fscanf
◆ fseek
◆ ftell
◆ fwrite
◆ rfclose()
int rfclose |
( |
RFILE * |
stream | ) |
|
◆ rfeof()
int rfeof |
( |
RFILE * |
stream | ) |
|
◆ rferror()
int rferror |
( |
RFILE * |
stream | ) |
|
◆ rfflush()
◆ rfgetc()
int rfgetc |
( |
RFILE * |
stream | ) |
|
◆ rfgets()
char* rfgets |
( |
char * |
buffer, |
|
|
int |
maxCount, |
|
|
RFILE * |
stream |
|
) |
| |
◆ rfopen()
◆ rfprintf()
int rfprintf |
( |
RFILE * |
stream, |
|
|
const char * |
format, |
|
|
|
... |
|
) |
| |
◆ rfputc()
int rfputc |
( |
int |
character, |
|
|
RFILE * |
stream |
|
) |
| |
◆ rfread()
int64_t rfread |
( |
void * |
buffer, |
|
|
size_t |
elem_size, |
|
|
size_t |
elem_count, |
|
|
RFILE * |
stream |
|
) |
| |
◆ rfscanf()
int rfscanf |
( |
RFILE * |
stream, |
|
|
const char * |
format, |
|
|
|
... |
|
) |
| |
◆ rfseek()
◆ rftell()
◆ rfwrite()