EMILE/libconfig/config_remove_property.c
2007-08-25 21:31:10 +00:00

16 lines
259 B
C

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