Files
MentOS/mentos/inc/libc/stdbool.h
T
Luigi Capogrosso 7d9085fecf Finish v0.3.0
2019-05-08 17:07:11 +02:00

17 lines
367 B
C

/// MentOS, The Mentoring Operating system project
/// @file stdbool.h
/// @brief
/// @copyright (c) 2019 This file is distributed under the MIT License.
/// See LICENSE.md for details.
#pragma once
/// @brief Define boolean value.
typedef enum bool_t
{
/// [0] False.
false,
/// [1] True.
true
} __attribute__ ((__packed__)) bool_t;