Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
finish the conversion C++ of simix::MailboxImpl
[simgrid.git] / include / xbt / file.h
index 5920f3a..8f6941a 100644 (file)
@@ -1,5 +1,3 @@
-/* str.h - XBT string related functions.                                    */
-
 /* Copyright (c) 2007-2015. The SimGrid Team.
  * All rights reserved.                                                     */
 
 
 SG_BEGIN_DECL()
 
-/** @addtogroup XBT_file
- *  @brief File manipulation functions
+/** @defgroup XBT_file File manipulation functions
+ *  @ingroup XBT_misc
  *
- * This module redefine some quite classical functions (such as xbt_getline() or xbt_dirname()) for the platforms
+ * This module redefine some quite classical functions such as xbt_getline() or xbt_dirname() for the platforms
  * lacking them.
  * @{
  */
@@ -32,6 +30,7 @@ XBT_PUBLIC(ssize_t) xbt_getline(char **lineptr, size_t * n, FILE * stream);
 
 /* Our own implementation of dirname, that does not exist on windows */
 XBT_PUBLIC(char *) xbt_dirname(const char *path);
+XBT_PUBLIC(char *) xbt_basename(const char *path);
 
 /**@}*/