EMILE/libemile/emile_second_get_property.c

25 lines
434 B
C
Raw Normal View History

2005-11-28 21:35:28 +00:00
/*
*
* (c) 2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
*
*/
2005-11-28 20:55:20 +00:00
#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;
}