Files
stvpn/networkaux.hpp
T
Олег Бородин 3f261b0922 working commit
2026-05-20 17:15:26 +02:00

12 lines
312 B
C++

#ifndef NETWORKAUX_HPP
#include <expected>
#include <string>
std::expected<std::string, std::string> nethost(std::string network, uint prefix, uint num);
std::expected<uint, std::string> netprefix(const std::string network);
std::expected<std::string, std::string> network(const std::string network);
#endif