C Macro bool true false are defined - sonkoni/Koni-Wiki GitHub Wiki

stdbool.h

__bool_true_false_are_defined

๋ถˆ ์ •์˜ ํ™•์ธ ๋งคํฌ๋กœ. stdbool.h ๋ฅผ ๋ฐ›์•˜์œผ๋ฉด ํ•ญ์ƒ 1์ด๋‹ค.

#define __bool_true_false_are_defined    1
#include <stdio.h>
#include <stdbool.h>

int main(int argc, char *argv[]) {
#if __bool_true_false_are_defined == 1
    printf("sizeof(bool): %zu\n", sizeof(bool));
#endif
    return 0;
}
// sizeof(bool): 1
โš ๏ธ **GitHub.com Fallback** โš ๏ธ