Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is using char as a bool in C bad practice?

Tags:

c

boolean

Is there any downside to using

typedef char bool;
enum boolean { false, true };

in C to provide a semantic boolean type?

like image 982
Delan Azabani Avatar asked Oct 04 '10 03:10

Delan Azabani


2 Answers

In C99, you should be using stdbool.h, which defines bool, true, and false.

Otherwise what you have is fine. Using just the enum may be a bit simpler, but if you really want to save space what you have works.

like image 111
GManNickG Avatar answered Oct 15 '22 12:10

GManNickG


The short answer is: it's fine. It's particularly good if you needed to make large arrays of them, although I would be tempted to just use the C99 built-in1.

Since you asked "is there any downside..." I suppose I could remark that there have been important machines that did not actually have a character load instruction. (The Cray and initial DEC Alpha come to mind.) Machines in the future may suddenly go all minimal once again.

It will always be fast to load a standard integral type.

It will probably always be fast to load a single character.


1. See C99 6.2.5. There is a built-in type _Bool. Then, if you include <stdbool.h> (see C99 7.16) you get an alias, the more gracefully named bool, and defines for true and false. If you use this it will clash with your typedef but I'm sure it would be an easy thing to fix.

like image 43
DigitalRoss Avatar answered Oct 15 '22 13:10

DigitalRoss