mirror of
https://github.com/MidnightCommander/mc
synced 2025-02-01 07:55:52 +03:00
17 lines
167 B
C
17 lines
167 B
C
|
/*
|
||
|
|
||
|
Micro Helper Library: generic type declarations
|
||
|
|
||
|
*/
|
||
|
|
||
|
#ifndef __MHL_TYPES_H
|
||
|
#define __MHL_TYPES_H
|
||
|
|
||
|
typedef enum
|
||
|
{
|
||
|
false = 0,
|
||
|
true = 1
|
||
|
} bool;
|
||
|
|
||
|
#endif
|