mirror of
https://github.com/ShadauxCat/CATSFC.git
synced 2025-04-02 10:41:47 -04:00
References: <http://gbatemp.net/threads/libds2a-unofficial.288736/#post-4539983> <http://filetrip.net/dl?CCv0QSb7k8>
18 lines
327 B
C
Executable file
18 lines
327 B
C
Executable file
#ifndef _FATDIR_EX_H_
|
|
#define _FATDIR_EX_H_
|
|
|
|
#include "fatdir.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int dirnextl (DIR_ITER *dirState, char *filename, char *longFilename, struct stat *filestat);
|
|
int renamex( const char *oldName, const char *newName );
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif//_FATDIR_EX_H_
|