29 lines
547 B
C
29 lines
547 B
C
// File: ftypes.h
|
|
|
|
#ifndef FTYPES_H
|
|
#define FTYPES_H
|
|
|
|
#include <sys/types.h>
|
|
|
|
#define null NULL
|
|
|
|
typedef unsigned char uChar;
|
|
typedef unsigned int uInt;
|
|
typedef unsigned long uLong;
|
|
typedef uint8_t uInt8;
|
|
typedef uint16_t uInt16;
|
|
typedef uint32_t uInt32;
|
|
typedef uint64_t uInt64;
|
|
|
|
typedef signed int sInt;
|
|
typedef signed long sLong;
|
|
typedef int8_t sInt8;
|
|
typedef int16_t sInt16;
|
|
typedef int32_t sInt32;
|
|
typedef int64_t sInt64;
|
|
|
|
typedef long double lDouble;
|
|
|
|
#endif // FTYPES_H
|
|
|