1
0
Files
2022-09-29 17:59:04 +03:00

14 lines
226 B
C

#ifndef XFSIO_H
#define XFSIO_H
#include "types.h"
typedef int32_t intgen_t;
typedef intgen_t bool_t;
#define BOOL_TRUE 1
#define BOOL_FALSE 0
#define BOOL_UNKNOWN ( -1 )
#define BOOL_ERROR ( -2 )
#endif