EMILE/libconfig/config_remove_property.c
2007-08-31 20:42:27 +00:00

16 lines
265 B
C

/*
*
* (c) 2005 Laurent Vivier <Laurent@lvivier.info>
*
*/
#include <stdio.h>
#include <string.h>
#include "libconfig.h"
int config_remove_property(char *configuration, char *name)
{
return config_remove_indexed_property(configuration, name, NULL, NULL);
}