L'identifiant bool n'est pas défini en C

//You can surround your code with
#ifndef __cplusplus
typedef unsigned char bool;
static const bool False = 0;
static const bool True = 1;
#endif
Thoughtless Tapir