aoc-2025/libguf/test/test_ckdint.hpp
2025-12-23 21:13:41 +01:00

13 lines
207 B
C++
Executable File

#pragma once
#include "test.hpp"
struct CkdIntTest : public Test
{
CkdIntTest(const std::string& nm) : Test(nm) {};
void run() override;
private:
void test_ckd();
void test_ckd_uint();
};