2012-10-14 19:18:13 +02:00
|
|
|
#ifndef _FS_H_
|
|
|
|
#define _FS_H_
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
2012-12-27 18:01:04 +01:00
|
|
|
u8 *ISFS_GetFile(const char *path, u32 *size, s32 length);
|
2012-10-14 19:18:13 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|