source:
Main/trunk/VC6Compat/stdbool.h@
407
Last change on this file since 407 was 212, checked in by , on Oct 3, 2024 at 2:44:55 AM | |
---|---|
|
|
File size: 125 bytes |
Line | |
---|---|
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 |
Note:
See TracBrowser
for help on using the repository browser.