lokinet/llarp/fs.hpp

14 lines
204 B
C++
Raw Normal View History

2018-04-08 12:18:16 +00:00
#ifndef LLARP_FS_HPP
#define LLARP_FS_HPP
2018-06-14 07:48:42 +00:00
#if defined(WIN32) || defined(_WIN32)
2018-06-14 19:22:26 +00:00
#define PATH_SEP "\\"
2018-06-14 07:48:42 +00:00
#else
2018-06-14 19:22:26 +00:00
#define PATH_SEP "/"
2018-06-14 07:48:42 +00:00
#endif
2018-06-14 19:22:26 +00:00
#include "filesystem.h"
namespace fs = cpp17::filesystem;
2018-06-14 19:28:27 +00:00
2018-04-08 12:18:16 +00:00
#endif