#include "common/system_specific.h"
#include <iostream.h>
#include "command_line_parsing.h"
#include "iokernel/helper.h"
#include "token_stream.h"
#include "common/suif_vector.h"
#include <stdlib.h>
#include <errno.h>
Compounds | |
struct | OptionDescription |
Functions | |
Option* | build_prefixed_string ( String prefix, String argument, String* storage, String description ) |
A convenient function to create an option tree that matches a literal followed by a string. More... | |
Option* | build_multi_prefixed_string ( String prefix, String argument, suif_vector<String> *storage, String description ) |
|
|
A convenient function to create an option tree that matches a literal followed by a string.
E.g. "-I /usr/include".
param prefix - the literal string. param argument - the name of the string argument. param storage - the location to store the string argument. param description - the description of this compound option.