kit

kit
git clone https://git.ryansepassi.com/git/kit.git
Log | Files | Refs | README

stdbool.h (199B)


      1 /* stdbool.h -- C11 7.18 -- Boolean type and values */
      2 #ifndef KIT_STDBOOL_H
      3 #define KIT_STDBOOL_H
      4 
      5 #define bool _Bool
      6 #define true 1
      7 #define false 0
      8 
      9 #define __bool_true_false_are_defined 1
     10 
     11 #endif