mirror of
https://github.com/vivier/EMILE.git
synced 2024-10-31 20:05:01 +00:00
9bd9755dbb
Signed-off-by: Laurent Vivier <Laurent@Vivier.EU>
21 lines
407 B
C
21 lines
407 B
C
/*
|
|
*
|
|
* (c) 2004-2007 Laurent Vivier <Laurent@Vivier.EU>
|
|
*
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
#include "libconfig.h"
|
|
|
|
int config_get_indexed_property(int8_t *configuration, char *index_name, char *index_property, char *name, char *property)
|
|
{
|
|
int index ;
|
|
|
|
index = config_find_indexed_property(configuration,
|
|
index_name, index_property,
|
|
name, property);
|
|
return index;
|
|
}
|