You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
297 B

#ifndef ZT_CTLUTIL_HPP
#define ZT_CTLUTIL_HPP
#include <string>
10 months ago
#include <vector>
namespace ZeroTier {
10 months ago
const char* _timestr();
10 months ago
std::vector<std::string> split(std::string str, char delim);
10 months ago
std::string url_encode(const std::string& value);
} // namespace ZeroTier
10 months ago
#endif // namespace ZeroTier