X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/172a73b13fe909117c7fbf3d69d4ce5e87efdbc6..eaaf15df4b2bd557800632665a9dee66378c192a:/src/xbt/xbt_os_file.cpp?ds=sidebyside diff --git a/src/xbt/xbt_os_file.cpp b/src/xbt/xbt_os_file.cpp index d3e87dfd16..1248350f79 100644 --- a/src/xbt/xbt_os_file.cpp +++ b/src/xbt/xbt_os_file.cpp @@ -8,9 +8,6 @@ #include "xbt/file.hpp" /* this module */ -#include "xbt/file.h" -#include "xbt/sysdep.h" - #ifdef _WIN32 #include #endif @@ -18,24 +15,6 @@ #include #include /* POSIX dirname */ -/** @brief Returns the directory component of a path (reimplementation of POSIX dirname) - * - * The argument is never modified, and the returned value must be freed after use. - */ -char *xbt_dirname(const char *path) -{ - return xbt_strdup(simgrid::xbt::Path(path).getDirname().c_str()); -} - -/** @brief Returns the file component of a path (reimplementation of POSIX basename) - * - * The argument is never modified, and the returned value must be freed after use. - */ -char *xbt_basename(const char *path) -{ - return xbt_strdup(simgrid::xbt::Path(path).getBasename().c_str()); -} - std::string simgrid::xbt::Path::getDirname() { std::string p(path_);