Files
LNXSDK/Kha/Kore/miniClib/stdbool.h

8 lines
92 B
C
Raw Permalink Normal View History

2026-05-22 01:09:33 -07:00
#pragma once
#ifndef __cplusplus
typedef _Bool bool;
#define true 1
#define false 0
#endif