implement receiving new header format

This commit is contained in:
Lion Kortlepel
2024-06-25 17:46:08 +02:00
parent 88a9d4a1b1
commit 7c24020124
10 changed files with 166 additions and 138 deletions

11
include/Helpers.h Normal file
View File

@@ -0,0 +1,11 @@
#include <span>
#include <string>
#include <vector>
#pragma once
using ByteSpan = std::span<const char>;
std::string bytespan_to_string(ByteSpan span);
std::vector<char> strtovec(std::string_view str);