mirror of
https://github.com/ShadauxCat/CATSFC.git
synced 2025-04-02 10:41:47 -04:00
19 lines
321 B
C
Executable file
19 lines
321 B
C
Executable file
#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_
|