mirror of
https://github.com/vivier/EMILE.git
synced 2024-12-22 10:29:31 +00:00
16 lines
224 B
C
16 lines
224 B
C
/*
|
|
*
|
|
* (c) 2004-2007 Laurent Vivier <Laurent@lvivier.info>
|
|
*
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
|
|
#include "libmap.h"
|
|
|
|
int map_get_number(map_t *map)
|
|
{
|
|
return read_long((u_int32_t*)&map->partition.MapBlkCnt);
|
|
}
|