mirror of
https://github.com/joel16/3DSident.git
synced 2024-11-23 03:29:45 +00:00
99fc2e4c58
Basically cleaning up and making sure functions succeed before returning the result.
14 lines
341 B
C
14 lines
341 B
C
#ifndef FS_H
|
|
#define FS_H
|
|
|
|
#include <3ds.h>
|
|
|
|
FS_Archive fsArchive;
|
|
|
|
Result openArchive(FS_Archive * archive, FS_ArchiveID id);
|
|
Result closeArchive(FS_Archive archive);
|
|
Result makeDir(FS_Archive archive, const char * path);
|
|
bool fileExists(FS_Archive archive, const char * path);
|
|
bool dirExists(FS_Archive archive, const char * path);
|
|
|
|
#endif |