Changeset 23de644 in mainline for uspace/app/sbi/src/stree_t.h
- Timestamp:
- 2010-04-04T22:31:01Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 074444f, ecb6ac32
- Parents:
- 3aae4e8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sbi/src/stree_t.h
r3aae4e8 r23de644 30 30 #define STREE_T_H_ 31 31 32 #include "bigint_t.h" 32 33 #include "list_t.h" 33 34 #include "builtin_t.h" … … 54 55 55 56 typedef struct { 56 int value;57 bigint_t value; 57 58 } stree_lit_int_t; 58 59 … … 89 90 bo_lt_equal, 90 91 bo_gt_equal, 91 bo_plus 92 bo_plus, 93 bo_minus, 94 bo_mult 92 95 } binop_class_t; 93 96 94 97 /** Unary operation class */ 95 98 typedef enum { 96 uo_plus 99 uo_plus, 100 uo_minus, 97 101 } unop_class_t; 98 102 … … 109 113 typedef struct { 110 114 /** Operation class */ 111 unop_class_t oc;115 unop_class_t uc; 112 116 113 117 /** Argument */
Note:
See TracChangeset
for help on using the changeset viewer.