Changes in uspace/app/sbi/src/rdata_t.h [074444f:23de644] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sbi/src/rdata_t.h
r074444f r23de644 35 35 #include "intmap_t.h" 36 36 37 /** Boolean variable. */38 typedef struct {39 bool_t value;40 } rdata_bool_t;41 42 /** Character variable.43 *44 * Sysel character type should be able to store arbitrarily (or at least45 * very) large character sets.46 */47 typedef struct {48 bigint_t value;49 } rdata_char_t;50 51 37 /** Integer variable. 52 38 * … … 57 43 bigint_t value; 58 44 } rdata_int_t; 45 59 46 60 47 /** String variable */ … … 117 104 118 105 typedef enum var_class { 119 /** Boolean */120 vc_bool,121 122 /** Character **/123 vc_char,124 125 106 /** Integer */ 126 107 vc_int, … … 155 136 156 137 union { 157 rdata_bool_t *bool_v;158 rdata_char_t *char_v;159 138 rdata_int_t *int_v; 160 139 rdata_string_t *string_v;
Note:
See TracChangeset
for help on using the changeset viewer.