RetroArch
|
#include <string.h>
#include <errno.h>
#include <ctype.h>
#include <unistd.h>
#include <sys/iosupport.h>
#include "fatdir.h"
#include "cache.h"
#include "file_allocation_table.h"
#include "partition.h"
#include "directory.h"
#include "bit_ops.h"
#include "filetime.h"
#include "lock.h"
Functions | |
int | _FAT_stat_r (struct _reent *r, const char *path, struct stat *st) |
int | _FAT_link_r (struct _reent *r, const char *existing, const char *newLink) |
int | _FAT_unlink_r (struct _reent *r, const char *path) |
int | _FAT_chdir_r (struct _reent *r, const char *path) |
int | _FAT_rename_r (struct _reent *r, const char *oldName, const char *newName) |
int | _FAT_mkdir_r (struct _reent *r, const char *path, int mode) |
int | _FAT_statvfs_r (struct _reent *r, const char *path, struct statvfs *buf) |
DIR_ITER * | _FAT_diropen_r (struct _reent *r, DIR_ITER *dirState, const char *path) |
int | _FAT_dirreset_r (struct _reent *r, DIR_ITER *dirState) |
int | _FAT_dirnext_r (struct _reent *r, DIR_ITER *dirState, char *filename, struct stat *filestat) |
int | _FAT_dirclose_r (struct _reent *r, DIR_ITER *dirState) |
int _FAT_chdir_r | ( | struct _reent * | r, |
const char * | path | ||
) |
int _FAT_dirclose_r | ( | struct _reent * | r, |
DIR_ITER * | dirState | ||
) |
int _FAT_dirnext_r | ( | struct _reent * | r, |
DIR_ITER * | dirState, | ||
char * | filename, | ||
struct stat * | filestat | ||
) |
DIR_ITER* _FAT_diropen_r | ( | struct _reent * | r, |
DIR_ITER * | dirState, | ||
const char * | path | ||
) |
int _FAT_dirreset_r | ( | struct _reent * | r, |
DIR_ITER * | dirState | ||
) |
int _FAT_mkdir_r | ( | struct _reent * | r, |
const char * | path, | ||
int | mode | ||
) |
int _FAT_stat_r | ( | struct _reent * | r, |
const char * | path, | ||
struct stat * | st | ||
) |
int _FAT_statvfs_r | ( | struct _reent * | r, |
const char * | path, | ||
struct statvfs * | buf | ||
) |
int _FAT_unlink_r | ( | struct _reent * | r, |
const char * | path | ||
) |