mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-14 22:04:43 +00:00
20 lines
306 B
C
20 lines
306 B
C
static __attribute__((used)) char* rcsid = "$CVSHeader$";
|
|
/*
|
|
*
|
|
* (c) 2004 Laurent Vivier <Laurent@lvivier.info>
|
|
*
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "partition.h"
|
|
#include "libemile.h"
|
|
|
|
char* emile_map_dev(emile_map_t *map)
|
|
{
|
|
if (!emile_map_partition_is_valid(map))
|
|
return NULL;
|
|
|
|
return map->name;
|
|
}
|