mirror of
https://github.com/ApacheThunder/GBA-Exploader.git
synced 2025-06-18 11:35:38 -04:00
20 lines
306 B
C
20 lines
306 B
C
#ifndef _FATFILE_EX_H_
|
|
#define _FATFILE_EX_H_
|
|
|
|
#include <stdio.h>
|
|
#include "fatfile.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int freadex( void * buffer, int _size, int _n, FILE * f );
|
|
int fwritex( const void * buffer, int _size, int _n, FILE * f );
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif//_FATFILE_EX_H_
|