blob: 3bc7225d11fdc5082b9dade11d8076b6507ea589 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* ========================================
Copyright (C) 2025, Amlal El Mahrouss, licensed under the Apache 2.0 license.
======================================== */
#pragma once
#include <libSystem/SystemKit/Err.h>
#include <libSystem/SystemKit/System.h>
#include <CoreFoundation.fwrk/headers/Object.h>
#include <CoreFoundation.fwrk/headers/String.h>
#define KT_TEST_VERSION_BCD (0x0001)
#define KT_TEST_VERSION "v0.0.1"
#define KT_TEST_SUCCESS (kErrorSuccess)
#define KT_TEST_FAILURE (kErrorSuccess + 1)
|