mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-14 22:04:43 +00:00
15 lines
270 B
C
15 lines
270 B
C
/*
|
|
*
|
|
* (c) 2004-2007 Laurent Vivier <Laurent@lvivier.info>
|
|
*
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "libconfig.h"
|
|
|
|
int config_get_property(char *configuration, char *name, char *property)
|
|
{
|
|
return config_get_indexed_property(configuration, NULL, NULL, name, property);
|
|
}
|