initial commit | complete a draft outline

This commit is contained in:
DarkSharpness
2024-07-09 21:04:36 +08:00
commit 68dd99a826
7 changed files with 388 additions and 0 deletions

9
include/target.h Normal file
View File

@ -0,0 +1,9 @@
#pragma once
#include <cstdint>
namespace dark {
using target_size_t = std::uint32_t;
using target_ssize_t = std::int32_t;
} // namespace dark