Move the sources to trunk
[opencv] / apps / Hawk / CVEiCL / EiC / src / ppc403 / include / typesets.h
1 #define INCLUDE_INT 0 /*(sizeof(long) != sizeof(int))*/\r
2 \r
3 #define CASE_INT        case t_char: case t_short:\\r
4                                 case t_int: case t_enum\r
5 #define CASE_UINT       case t_uchar: case t_ushort: case t_uint\r
6 #define CASE_LONG   case t_long\r
7 #define CASE_ULONG  case t_ulong\r
8 #define CASE_FLOAT  case t_float: case t_double\r
9 #define CASE_NUM    CASE_INT:\\r
10                                 CASE_UINT:\\r
11                                 CASE_LONG:\\r
12                                 CASE_ULONG:\\r
13                                 CASE_FLOAT\r
14 \r
15 /* typesets.c\r
16 --------------*/\r
17 void do_stooutput(token_t * e1);\r
18 void do_inc_dec(token_t *e1, int op);\r
19 void output(token_t *e1);\r
20 int do_binaryop(token_t *e1, token_t *e2,int op);\r
21 int unaryop(token_t *e1,int op);\r
22 void cast2comm(token_t *e1, token_t *e2);\r
23 int bin_validate(unsigned oper, token_t *e1, token_t *e2);\r
24 void castconst(token_t *e1, token_t *e2,int explicit);\r
25 void castvar(token_t *e1, token_t *e2, int explicit);\r
26 \r