Bsoft object

struct Option

Source:

include/options.h

Description:

A structure for a command line input option.

Features:

Each option is defined by a tag (i.e., the string following a hyphen)
and a value (the next string after the tag).

Code:

struct Option {
Option* next;
char tag[256];
char value[256];
} ;

Other objects included:

struct Batom


Generated by bdoc.pl on Mon Jun 15 11:55:12 2009


Back to the Bsoft home