1 2 3 4 5 6 7 8 9 10 11
#pragma once #include <stdint.h> /** @file bool.h */ #ifndef bool typedef uint8_t bool; #define false 0 /* NOLINT */ #define true 1 /* NOLINT */ #endif