14 lines
226 B
C
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
|