* New function CtdlDelConfig() to delete a config db record
[citadel.git] / citadel / config.h
index 293593b817a89763489ca1f272892e2c561abea6..999fe7e76ba6182b3bed6fc25900e55c35336615 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1987-2015 by the citadel.org team
+ * Copyright (c) 1987-2016 by the citadel.org team
  *
  * This program is open source software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License version 3.
@@ -112,6 +112,7 @@ int CtdlGetConfigInt(char *);
 long CtdlGetConfigLong(char *);
 void CtdlSetConfigInt(char *key, int value);
 void CtdlSetConfigLong(char *key, long value);
+void CtdlDelConfig(char *key);
 
 char *CtdlGetSysConfig(char *sysconfname);
 void CtdlPutSysConfig(char *sysconfname, char *sysconfdata);