Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/sbi/src/rdata_t.h

    r074444f r23de644  
    3535#include "intmap_t.h"
    3636
    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 least
    45  * very) large character sets.
    46  */
    47 typedef struct {
    48         bigint_t value;
    49 } rdata_char_t;
    50 
    5137/** Integer variable.
    5238 *
     
    5743        bigint_t value;
    5844} rdata_int_t;
     45
    5946
    6047/** String variable */
     
    117104
    118105typedef enum var_class {
    119         /** Boolean */
    120         vc_bool,
    121 
    122         /** Character **/
    123         vc_char,
    124 
    125106        /** Integer */
    126107        vc_int,
     
    155136
    156137        union {
    157                 rdata_bool_t *bool_v;
    158                 rdata_char_t *char_v;
    159138                rdata_int_t *int_v;
    160139                rdata_string_t *string_v;
Note: See TracChangeset for help on using the changeset viewer.