#pragma once #include /** @file bool.h */ #ifndef bool typedef uint8_t bool; #define false 0 /* NOLINT */ #define true 1 /* NOLINT */ #endif