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