X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/97e83f57d51ddc111fca108acfaca4443730126f..2db7ca916c24c9f6da047de60550dda47690e572:/include/xbt/config.h diff --git a/include/xbt/config.h b/include/xbt/config.h index d311b66288..ed4c4ef1ce 100644 --- a/include/xbt/config.h +++ b/include/xbt/config.h @@ -100,18 +100,6 @@ XBT_PUBLIC(void) xbt_cfg_setdefault_double (const char *name, double val); XBT_PUBLIC(void) xbt_cfg_setdefault_string (const char *name, const char *val); XBT_PUBLIC(void) xbt_cfg_setdefault_boolean(const char *name, const char *val); -/** @brief Remove the provided value from the cell #name in #cfg. */ -XBT_PUBLIC(void) xbt_cfg_rm_int(xbt_cfg_t cfg, const char *name, int val); -XBT_PUBLIC(void) xbt_cfg_rm_double(xbt_cfg_t cfg, const char *name, double val); -XBT_PUBLIC(void) xbt_cfg_rm_string(xbt_cfg_t cfg, const char *name, const char *val); -XBT_PUBLIC(void) xbt_cfg_rm_boolean(xbt_cfg_t cfg, const char *name, int val); - -/** @brief Remove the value at position \e pos from the config \e cfg */ -XBT_PUBLIC(void) xbt_cfg_rm_at(xbt_cfg_t cfg, const char *name, int pos); - -/** @brief rm every values */ -XBT_PUBLIC(void) xbt_cfg_empty(xbt_cfg_t cfg, const char *name); - /** @brief Return if configuration is set by default*/ XBT_PUBLIC(int) xbt_cfg_is_default_value(const char *name); @@ -166,7 +154,6 @@ XBT_PUBLIC(void) xbt_cfg_register_int (const char *name, const char *desc, in XBT_PUBLIC(void) xbt_cfg_register_string (const char *name, const char *desc, const char*default_val,xbt_cfg_cb_t cb_set); XBT_PUBLIC(void) xbt_cfg_register_boolean(const char *name, const char *desc, const char*default_val,xbt_cfg_cb_t cb_set); XBT_PUBLIC(void) xbt_cfg_register_alias(const char *newname, const char *oldname); -XBT_PUBLIC(void) xbt_cfg_unregister(xbt_cfg_t cfg, const char *name); XBT_PUBLIC(void) xbt_cfg_register_str(xbt_cfg_t * cfg, const char *entry); XBT_PUBLIC(void) xbt_cfg_aliases(xbt_cfg_t cfg);