14 lines
292 B
C++
14 lines
292 B
C++
#ifndef MCPINGER_UTILS_H
|
|
#define MCPINGER_UTILS_H
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
std::vector<std::string> cidrToIps(const std::string &cidr);
|
|
|
|
std::vector<std::string> parseIps(const std::string &input);
|
|
|
|
std::string makePathSafe(const std::string& input);
|
|
|
|
#endif // MCPINGER_UTILS_H
|