EMILE/libconfig/config_remove_property.c

16 lines
264 B
C
Raw 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_remove_property(int8_t *configuration, char *name)
2007-08-25 21:31:10 +00:00
{
2007-08-31 20:42:27 +00:00
return config_remove_indexed_property(configuration, name, NULL, NULL);
2007-08-25 21:31:10 +00:00
}