Where is stdbool.h?

后端 未结 6 1876
温柔的废话
温柔的废话 2020-12-28 15:42

I want to find the _Bool definition on my system, so for systems where it\'s missing I can implement it. I\'ve seen various definitions for it here and on other

6条回答
  •  我在风中等你
    2020-12-28 16:38

    As a note:

    The _Bool is defined in C99. If you build your program with:

    gcc -std=c99
    

    You can expect it to be there.

提交回复
热议问题