summaryrefslogtreecommitdiff
path: root/src/c/type/types.h
blob: ee5c8992ecdb25b81acd5b70c366227455d527e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _TYPES_H_
#define _TYPES_H_

/*****************************************************************************/
/* TYPE DEFINITIONS                                                          */
/*****************************************************************************/
/*typedef unsigned char       boolean;*/

typedef unsigned char       uint8;
typedef unsigned short      uint16;
typedef unsigned int        uint32;

typedef signed char         int8;
typedef signed short        int16;
typedef signed int          int32;

#endif  /*_TYPES_H*/