_Bool is a C99 type, bool is a C++ type. Both take a single byte, same as unsigned char, signed char, and char data types. Note, _Bool is C only and bool is C++ only, unless some other include file has done a #define to map one into another. Since the Arduino IDE uses C++ for compiling .ino/.pde files, you should use the 'bool' type.