AsmGrader 0.0.0
Loading...
Searching...
No Matches
non_terminated_str.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <cstddef>
4
5namespace asmgrader {
6
7// A non-null-terminated string for serialization/deserialization
8template <std::size_t Length>
10{
11 const char* string{};
12 constexpr static auto LENGTH = Length;
13};
14
15} // namespace asmgrader
Definition asm_buffer.hpp:19
Definition non_terminated_str.hpp:10
static constexpr auto LENGTH
Definition non_terminated_str.hpp:12