File src/engine/cmds.h changed (mode: 100644) (index b9b72acd8..3255681b7) |
... |
... |
typedef struct cmd_info_t |
90 |
90 |
|
|
91 |
91 |
char *post_name; /* Points to the first character after the name (optional ! |
char *post_name; /* Points to the first character after the name (optional ! |
92 |
92 |
or ? are considered part of the name). */ |
or ? are considered part of the name). */ |
93 |
|
char *raw_args; /* Arguments as they were passed in. */ |
|
94 |
|
char *args; /* Arguments after macro and envvar expansions (points into |
|
95 |
|
raw_args buffer). */ |
|
|
93 |
|
char *raw_args; /* Arguments as they were passed in without truncation of |
|
94 |
|
trailing whitespace (points into post_name buffer). */ |
|
95 |
|
char *args; /* Arguments after macro and envvar expansions. */ |
96 |
96 |
int argc; /* Number of arguments. */ |
int argc; /* Number of arguments. */ |
97 |
97 |
char **argv; /* Values of arguments. */ |
char **argv; /* Values of arguments. */ |
98 |
98 |
int (*argvp)[2]; /* Start/end positions of arguments in args. */ |
int (*argvp)[2]; /* Start/end positions of arguments in args. */ |