EMILE/libemile/emile_map_bootblock_is_valid.c

15 lines
284 B
C
Raw Normal View History

2004-12-21 18:00:23 +00:00
static __attribute__((used)) char* rcsid = "$CVSHeader$";
2004-12-14 23:49:59 +00:00
/*
*
* (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);
}