EMILE/libconfig/config_set_property.c

17 lines
293 B
C
Raw Permalink Normal View History

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