* Small miniswig update to use less dependencies
[supertux.git] / src / file_system.hpp
index b821188..b92c4e1 100644 (file)
 
 namespace FileSystem
 {
+  /**
+   * returns the path of the directory the file is in
+   */
   std::string dirname(const std::string& filename);
+
+  /**
+   * returns the name of the file
+   */
   std::string basename(const std::string& filename);
 
   /**