mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-14 22:04:43 +00:00
25 lines
434 B
C
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;
|
|
}
|