mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-14 22:04:43 +00:00
25 lines
410 B
C
25 lines
410 B
C
static __attribute__((used)) char* rcsid = "$CVSHeader$";
|
|
/*
|
|
*
|
|
* (c) 2004 Laurent Vivier <LaurentVivier@wanadoo.fr>
|
|
*
|
|
*/
|
|
|
|
#include <string.h>
|
|
|
|
#include "partition.h"
|
|
#include "libemile.h"
|
|
|
|
int emile_map_set_partition_name(emile_map_t *map, char* name)
|
|
{
|
|
if (!emile_map_partition_is_valid(map))
|
|
return -1;
|
|
|
|
if (strlen(name) > 31)
|
|
return -1;
|
|
|
|
strncpy(map->partition.PartName, name, 32);
|
|
|
|
return 0;
|
|
}
|