Lines Matching full:info
48 const struct command_info *info;
49 for (info = command_infos; info->command != NULL; info++) {
50 if (strcmp(command, info->command) == 0) {
54 if (info->command == NULL) {
58 return info;
62 const struct command_info *info;
63 for (info = command_infos; info->command != NULL; info++) {
64 if (info != command_infos) {
67 fprintf(out_fp, "%s", info->command);
78 const struct command_info *info;
79 for (info = command_infos; info->command != NULL; info++) {
80 info->usage(out_fp, prog_name);
105 const struct command_info *info = search_command(argv[arg_start]);
106 if (info == NULL) {
111 info->usage(stdout, prog_name);
123 const struct command_info *info = search_command(command);
124 if (info == NULL) {
129 return info->handler(argc, argv, 2);