temporalz/lib/src/stubs/c_headers/stdbool.h
2026-07-16 02:27:13 +06:00

8 lines
116 B
C

#ifndef TEMPORALZ_STDBOOL_H
#define TEMPORALZ_STDBOOL_H
typedef _Bool bool;
#define true 1
#define false 0
#endif