Data Fields | |
| char * | flag |
Pointer to a zero terminated string of characters that represents the option flag. Please note that an option's flag should verify the following rules:
| |
| int | arg |
This flag defines the number of argument required by the option. The option may require zero (ex: --help) or one argument.
| |
| int | max_size |
| The tag defines the maximum number of characters for the option's argument. | |
| char * | reg_exp |
| Pointer to a zero terminated string of characters that represents the regular expression that matches the option's argument. | |
| char ** | pointer |
| Address to a pointer that will receive the address of the sero terminated string of characters that represents en option's argument. | |
| char * | desc |
| Pointer to a zero terminated string of characters that contains a literal description of the option. | |
Definition at line 18 of file option.h.
1.3-rc1