EMILE/libconfig/config_get_property.c

15 lines
269 B
C
Raw Permalink Normal View History

2007-08-25 21:31:10 +00:00
/*
*
* (c) 2004-2007 Laurent Vivier <Laurent@Vivier.EU>
2007-08-25 21:31:10 +00:00
*
*/
#include <stdio.h>
#include "libconfig.h"
2007-09-08 23:09:14 +00:00
int config_get_property(int8_t *configuration, char *name, char *property)
2007-08-25 21:31:10 +00:00
{
return config_get_indexed_property(configuration, NULL, NULL, name, property);
}