aboutsummaryrefslogtreecommitdiff
path: root/shared/bool.h
blob: 9ea97f7f6f0692453c0cc57f26c0ce05d5c16468 (plain)
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 */