Changes in uspace/app/sbi/src/tdata_t.h [074444f:23de644] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sbi/src/tdata_t.h
r074444f r23de644 34 34 /** Class of primitive type. */ 35 35 typedef enum { 36 /** Boolean type */37 tpc_bool,38 /** Character type */39 tpc_char,40 36 /** Integer type */ 41 37 tpc_int, … … 61 57 /** CSI definition */ 62 58 struct stree_csi *csi; 63 64 /** (Real) type arguments */65 list_t targs; /* of tdata_item_t */66 59 } tdata_object_t; 67 60 … … 77 70 list_t extents; /* of stree_expr_t */ 78 71 } tdata_array_t; 72 73 /** Generic type. */ 74 typedef struct { 75 } tdata_generic_t; 79 76 80 77 /** Functional type. */ … … 93 90 /** Array type item */ 94 91 tic_tarray, 92 /** Generic type item */ 93 tic_tgeneric, 95 94 /** Function type item */ 96 95 tic_tfun, … … 107 106 tdata_object_t *tobject; 108 107 tdata_array_t *tarray; 108 tdata_generic_t *tgeneric; 109 109 tdata_fun_t *tfun; 110 110 } u;
Note:
See TracChangeset
for help on using the changeset viewer.