Macros for boolean variables using stdbool.h

Introduction

Introduction

Introduces a macro "bool" for "_Bool".

Also "true" for 1 and "false" for 0.


_Bool x = 1;
bool y = true;