mirror of
https://github.com/vivier/EMILE.git
synced 2024-12-21 18:30:20 +00:00
16 lines
267 B
C
16 lines
267 B
C
/*
|
|
*
|
|
* (c) 2005 Laurent Vivier <Laurent@lvivier.info>
|
|
*
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
#include "libconfig.h"
|
|
|
|
int config_remove_property(int8_t *configuration, char *name)
|
|
{
|
|
return config_remove_indexed_property(configuration, name, NULL, NULL);
|
|
}
|