Guitar
realpath.h
Go to the documentation of this file.
1 #ifndef REALPATH_H
2 #define REALPATH_H
3 
4 #include <string>
5 
6 namespace misc {
7 
8 std::string realpath(const char *path);
9 std::string realpath(std::string const &path);
10 
11 }
12 
13 #endif // REALPATH_H
Definition: misc.h:20
std::string realpath(const char *path)
パスを絶対パスに変換する
Definition: realpath.cpp:23