mirror of
https://github.com/vivier/EMILE.git
synced 2025-01-11 06:30:04 +00:00
14 lines
226 B
C
14 lines
226 B
C
|
/*
|
||
|
*
|
||
|
* (c) 2004 Laurent Vivier <LaurentVivier@wanadoo.fr>
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#include "partition.h"
|
||
|
#include "libemile.h"
|
||
|
|
||
|
int emile_map_bootblock_is_valid(char *bootblock)
|
||
|
{
|
||
|
return (bootblock[0] == 0x4C) && (bootblock[1] == 0x4B);
|
||
|
}
|