X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/16bbb8a8212497d9c44c81333ed2c0e689e0c5af..2c8c164d58104acb6256b6d8efd476a6a2165b8a:/src/xbt/config.c diff --git a/src/xbt/config.c b/src/xbt/config.c index ff9ee32d4b..b78bdfb7fa 100644 --- a/src/xbt/config.c +++ b/src/xbt/config.c @@ -340,11 +340,6 @@ void xbt_cfg_register_str(xbt_cfg_t * cfg, const char *entry) free(entrycpy); /* strdup'ed by dict mechanism, but cannot be const */ } -static int strcmp_voidp(const void *pa, const void *pb) -{ - return strcmp(*(const char **)pa, *(const char **)pb); -} - /** @brief Displays the declared options and their description */ void xbt_cfg_help(xbt_cfg_t cfg) { @@ -357,7 +352,7 @@ void xbt_cfg_help(xbt_cfg_t cfg) xbt_dict_foreach((xbt_dict_t )cfg, dict_cursor, name, variable) { xbt_dynar_push(names, &name); } - xbt_dynar_sort(names, strcmp_voidp); + xbt_dynar_sort_strings(names); xbt_dynar_foreach(names, dynar_cursor, name) { int i;