port-work; won't compile or even work
[ppcskel.git] / fat.h
1 /*
2         BootMii - a Free Software replacement for the Nintendo/BroadOn bootloader.
3         Requires mini.
4
5 Copyright (C) 2009              Andre Heider "dhewg" <dhewg@wiibrew.org>
6
7 # This code is licensed to you under the terms of the GNU GPL, version 2;
8 # see file COPYING or http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
9 */
10
11 #ifndef __FAT_H__
12 #define __FAT_H__
13
14 #include "ff.h"
15 #include "diskio.h"
16
17 u32 fat_mount(void);
18 u32 fat_umount(void);
19 u32 fat_clust2sect(u32 clust);
20
21 #endif
22