mirror of
https://github.com/joel16/3DSident.git
synced 2024-11-27 05:20:26 +00:00
6a61408ca2
More similarity towards PSPident :p
13 lines
281 B
C
13 lines
281 B
C
#include <3ds.h>
|
|
#include <stdbool.h>
|
|
#include <stdio.h>
|
|
#include <sys/stat.h>
|
|
|
|
FS_Archive sdmcArchive;
|
|
|
|
void openSdArchive();
|
|
void closeSdArchive();
|
|
int makeDir(const char * path);
|
|
bool fileExists(char * path);
|
|
bool dirExists(const char * path);
|
|
bool deleteFile(const char *path); |