mirror of
https://github.com/joel16/ElevenMPV.git
synced 2025-02-17 05:17:54 +00:00
14 lines
373 B
C
14 lines
373 B
C
#ifndef _ELEVENMPV_FS_H_
|
|
#define _ELEVENMPV_FS_H_
|
|
|
|
#include <psp2/types.h>
|
|
|
|
SceBool FS_FileExists(const char *path);
|
|
SceBool FS_DirExists(const char *path);
|
|
const char *FS_GetFileExt(const char *filename);
|
|
int FS_GetFileSize(const char *path, SceOff *size);
|
|
int FS_ReadFile(const char *path, void *buf, int size);
|
|
int FS_WriteFile(char *path, void *buf, int size);
|
|
|
|
#endif
|