Fixed binary search: no more infinite loops when vendor is unknown.
[tangerine.git] / workbench / fs / fat / support.h
blobd51b9a903139d24a1832e6023c8586cd98a6efc4
1 /*
2 * fat.handler - FAT12/16/32 filesystem handler
4 * Copyright © 2006 Marek Szyprowski
5 * Copyright © 2007-2008 The AROS Development Team
7 * This program is free software; you can redistribute it and/or modify it
8 * under the same terms as AROS itself.
10 * $Id$
13 #ifndef FAT_HANDLER_SUPPORT_H
14 #define FAT_HANDLER_SUPPORT_H
16 #include <exec/types.h>
17 #include <dos/dosextens.h>
19 void SendEvent(LONG event);
20 void __stackparm ErrorMessage(char *fmt, ...);
22 int ilog2(ULONG data);
23 #define log2 ilog2
25 #endif