Programming Resource
  bool.h
 
/* Filename     :   bool.h
* Written By : Prof. Kantila [kantila@gmail.com]
* Dated : 18th Dec 2006
* Purpose : To provide bool data type definition to older compilors
* Definition : bool, false, true
*/
#ifndef _BOOL_H_
#define _BOOL_H_
typedef enum
{
false=0,
true=1
}bool;
#define false false
#define true true
#endif
 
 
  Today, there have been 2 visitors (2 hits) on this page!  
 
This website was created for free with Own-Free-Website.com. Would you also like to have your own website?
Sign up for free