EMILE/libemile/emile_second_get_property.c
2006-06-01 23:09:17 +00:00

26 lines
452 B
C

/*
*
* (c) 2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
*
*/
#include <string.h>
#include "libemile.h"
int emile_second_get_property(char *configuration, char *name, char *property)
{
int index = 0;
char current_name[256];
while (1)
{
index = emile_second_get_next_property(configuration, index, current_name, property);
if (index == -1)
break;
if (strcmp(name, current_name) == 0)
return 0;
}
property[0] = 0;
return -1;
}