UserInterface/RB_Option_Name [ Structures ]

FUNCTION

Element in a list of option names. Used in a RB_Option_Test to specify to what options a test applies.

SOURCE

struct RB_Option_Name
{
    /* linked list administration */
    struct RB_Option_Name *next;
    /* name of the option */
    char               *name;
    /* use by the Count test */
    int                 count;
};