ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/tewi/VC6Compat/stdbool.h
Revision: 1.1
Committed: Thu Oct 17 09:53:39 2024 UTC (4 weeks ago) by nishi
Content type: text/x-c
Branch: MAIN
CVS Tags: v2_05A, v2_05, HEAD
Log Message:
update

File Contents

# Content
1 /* $Id: stdbool.h 212 2024-10-02 17:44:55Z nishi $ */
2
3 #ifndef __STDBOOL_H__
4 #define __STDBOOL_H__
5
6 typedef unsigned char bool;
7
8 #define true 1
9 #define false 0
10
11 #endif