EMILE/libemile/emile_map_set_partition_type.c
2006-09-15 14:55:39 +00:00

25 lines
406 B
C

static __attribute__((used)) char* rcsid = "$CVSHeader$";
/*
*
* (c) 2004 Laurent Vivier <Laurent@lvivier.info>
*
*/
#include <string.h>
#include "partition.h"
#include "libemile.h"
int emile_map_set_partition_type(emile_map_t *map, char* type)
{
if (!emile_map_partition_is_valid(map))
return -1;
if (strlen(type) > 31)
return -1;
strncpy(map->partition.PartType, type, 32);
return 0;
}