mirror of
https://github.com/vivier/EMILE.git
synced 2024-12-22 10:29:31 +00:00
18 lines
239 B
C
18 lines
239 B
C
/*
|
|
*
|
|
* (c) 2004-2007 Laurent Vivier <Laurent@lvivier.info>
|
|
*
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "libmap.h"
|
|
|
|
char* map_get_partition_name(map_t *map)
|
|
{
|
|
if (!map_partition_is_valid(map))
|
|
return NULL;
|
|
|
|
return map->partition.PartName;
|
|
}
|