Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill now unused xbt_dirname().
[simgrid.git] / include / xbt / file.h
1 /* Copyright (c) 2007-2017. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef XBT_FILE_H
8 #define XBT_FILE_H
9
10 #include <xbt/base.h>
11
12 SG_BEGIN_DECL()
13
14 /** @defgroup XBT_file File manipulation functions
15  *  @ingroup XBT_misc
16  *
17  * This module redefine some quite classical functions such as xbt_basename() for the platforms lacking them.
18  * @{
19  */
20 /* Our own implementation of basename, that does not exist on windows */
21 XBT_PUBLIC(char *) xbt_basename(const char *path);
22
23 /**@}*/
24
25 SG_END_DECL()
26 #endif                          /* XBT_FILE_H */