TacOS  0.2
 Tout Structures de données Fichiers Fonctions Variables Définitions de type Énumérations Macros
stdbool.h
Aller à la documentation de ce fichier.
1 
29 #ifndef _STDBOOL_H_
30 #define _STDBOOL_H_
31 
32 #ifndef __cplusplus
33 
34 #define bool _Bool
35 #define true 1
36 #define false 0
38 #endif
39 
40 #define __bool_true_false_are_defined 1
41 
42 #endif