This is the mail archive of the newlib@sources.redhat.com mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

stdbool.h


Here's a stdbool.h implementation. I haven't read the C99 standard. So
if this misses something, please point it out.

Cheers,
Shaun


#ifndef _STDBOOL_H_
#define _STDBOOL_H_

typedef enum { false, true } bool;

#endif


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]