mirror of
https://github.com/vivier/EMILE.git
synced 2025-02-06 23:30:37 +00:00
13 lines
203 B
C
13 lines
203 B
C
|
/*
|
||
|
*
|
||
|
* (c) 2004-2007 Laurent Vivier <Laurent@lvivier.info>
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#include "libmap.h"
|
||
|
|
||
|
int map_partition_is_valid(map_t *map)
|
||
|
{
|
||
|
return read_short((u_int16_t*)&map->partition.Sig) == MAP_SIGNATURE;
|
||
|
}
|