working commit

This commit is contained in:
2026-05-15 15:30:29 +02:00
parent 879481feab
commit 886684e224
28 changed files with 629 additions and 81 deletions
+11
View File
@@ -0,0 +1,11 @@
#ifndef NETWORKAUX_HPP
#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> network(const std::string network);
#endif