mirror of
https://github.com/ApacheThunder/GBA-Exploader.git
synced 2025-06-18 11:35:38 -04:00
19 lines
311 B
C
19 lines
311 B
C
#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_
|