/* SPDX-License-Identifier: MIT */ /* * Copyright (c) 2024, Ivaylo Ivanov */ #ifndef STDBOOL_H_ /* Include guard */ #define STDBOOL_H_ #define bool _Bool #ifndef true #define true 1 #endif #ifndef false #define false 0 #endif #endif // STDBOOL_H_