mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
60f2d8d3c0
- isspace & toupper needs an unsigned char as arg - collision with compiler namespace __X - resolved some typos Signed-off-by: Patrick Winnertz <winnie@debian.org>
19 lines
268 B
C
19 lines
268 B
C
/*
|
|
|
|
Micro Helper Library: generic type declarations
|
|
|
|
*/
|
|
|
|
#ifndef MHL_TYPES_H
|
|
#define MHL_TYPES_H
|
|
|
|
#if !defined(__bool_true_false_are_defined) && !defined(false) && !defined(true) && !defined(bool)
|
|
typedef enum
|
|
{
|
|
false = 0,
|
|
true = 1
|
|
} bool;
|
|
#endif
|
|
|
|
#endif
|