diff options
Diffstat (limited to 'src/fsutils.hh')
| -rw-r--r-- | src/fsutils.hh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/fsutils.hh b/src/fsutils.hh new file mode 100644 index 0000000..29bc022 --- /dev/null +++ b/src/fsutils.hh @@ -0,0 +1,14 @@ +#ifndef FSUTILS_HH +#define FSUTILS_HH + +#include <string> + +namespace stuff { + +bool isdir(const std::string& path); + +bool mkdir_p(const std::string& path); + +} // namespace stuff + +#endif /* FSUTILS_HH */ |
