bool, true, false, __bool_true_false_are_defined

De RAD Studio
Aller à : navigation, rechercher

Remonter à Stdbool.h - Index


Fichier d'en-tête

stdbool.h


Catégorie

Types de variable


Prototype

bool true = 1;

bool false = 0;

bool h = __bool_true_false_are_defined;


Description

Le fichier d'en-tête stdbool.h a quatre macros définies, qui sont mappées sur des types booléens.


Exemple

#include <stdio.h>
#include <stdbool.h>
int main(int , char**){
  bool t = true;
  bool f = false;
  bool h = __bool_true_false_are_defined;
  if (h) printf("foo");
  return 0;
}
POSIX Win32 ANSI C ANSI C++

+

+

+

+