Initial commit

This commit is contained in:
Hector Martin
2016-11-23 14:35:12 +09:00
commit 5b1c4f85b6
296 changed files with 39925 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#ifndef ___ISFS_H__
#define ___ISFS_H__
#include <gctypes.h>
s32 isfs_get(const char *path, u8 **buf, u32 expected, u32 maxsize, bool use_blob);
s32 isfs_put(const char *path, const void *buf, u32 len);
#endif