#ifndef NETWORKAUX_HPP #include #include std::expected nethost(std::string network, uint prefix, uint64_t num); std::expected netprefix(const std::string network); std::expected network(const std::string network); uint64_t netcapa6(const uint prefix); uint64_t netcapa4(const uint prefix); std::expected netcapa(std::string network, uint prefix); #endif