NAME
arg_typestr - Fixed array of data type names.
SYNOPSIS
#include <argtable.h>
extern const char *arg_typestr[];
DESCRIPTION
Defines a fixed array of strings that can be used as substitute names
for arguments with NULL names. The array is indexed by arg_type; each
name describing the corresponding data type
Arg_str[arg_int] = "<int>"
Arg_str[arg_dbl] = "<double>"
Arg_str[arg_str] = "<string>"
Arg_str[arg_bool] = "<bool>"
Arg_str[arg_lit] = ""
The name for arg_lit has been deliberately left empty because literals
do not have stored data value as such.
SEE ALSO
arg_catargs
,
arg_dump
,
arg_glossary
,
arg_record
,
arg_scanargv
,
arg_scanstr
,
arg_syntax