Lines Matching +defs:var +defs:cmd +defs:c
189 struct cmd { struct
190 const char *c_name; /* Name of command */
191 int (*c_func)(void *); /* Implementor of the command */
192 int c_pipe; /* Pipe output through the pager */
197 const char *c_complete; /* String describing completion */
199 short c_argtype; /* Type of arglist (see below) */
200 short c_msgflag; /* Required flags of messages */
201 short c_msgmask; /* Relevant flags of messages */
358 struct var { struct
359 struct var *v_link; /* Forward link to next variable */ argument
360 char *v_name; /* The variable's name */ argument
361 char *v_value; /* And its current value */
432 is_WSP(int c) in is_WSP()