mirror of
https://github.com/BeamMP/BeamMP-Launcher.git
synced 2025-07-01 23:46:59 +00:00
12 lines
206 B
C++
12 lines
206 B
C++
#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);
|