.. _program_listing_file_api_include_pntos_stdbool.h: Program Listing for File stdbool.h ================================== |exhale_lsh| :ref:`Return to documentation for file ` (``api/include/pntos/stdbool.h``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #pragma once #ifndef __cplusplus /* Fallback to bool typdefs on C89 */ # ifdef PNTOS_NO_BOOL # define false 0 # define true 1 # define bool int # else # include # endif #endif