working commit

This commit is contained in:
Олег Бородин
2026-05-20 17:15:26 +02:00
parent 0d37d45543
commit 3f261b0922
5 changed files with 40 additions and 14 deletions
+2 -2
View File
@@ -4,8 +4,8 @@
#include <expected>
#include <string>
std::expected<std::string, std::string> nethost(std::string network, int prefix, uint32_t num);
std::expected<uint32_t, std::string> netprefix(const std::string network);
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