EMILE/libemile/emile_second_get_property.c
2005-11-28 21:35:28 +00:00

25 lines
434 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;
}
return -1;
}