Searched refs:user_command_array (Results 1 – 3 of 3) sorted by relevance
46 COMMAND **user_command_array = NULL; variable88 if (!user_command_array) in define_user_command()89 user_command_array = xmalloc (1 * sizeof (COMMAND *)); in define_user_command()91 user_command_array = xrealloc (user_command_array, in define_user_command()94 user_command_array[slot] = xmalloc (sizeof (COMMAND)); in define_user_command()95 user_command_array[slot]->name = xstrdup (name); in define_user_command()96 user_command_array[slot]->proc = proc; in define_user_command()97 user_command_array[slot]->argument_in_braces = needs_braces_p; in define_user_command()
27 extern COMMAND **user_command_array;
1974 if (user_command_array[i] && in get_command_entry()1975 (strcmp (user_command_array[i]->name, string) == 0)) in get_command_entry()1976 return user_command_array[i]; in get_command_entry()