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