| 825 | } |
| 826 | |
| 827 | struct gstr get_relations_str(struct symbol **sym_arr, struct list_head *head) |
| 828 | { |
| 829 | struct symbol *sym; |
| 830 | struct gstr res = str_new(); |
| 831 | int i; |
| 832 | |
| 833 | for (i = 0; sym_arr && (sym = sym_arr[i]); i++) |
| 834 | get_symbol_str(&res, sym, head); |
| 835 | if (!i) |
| 836 | str_append(&res, "No matches found.\n"); |
| 837 | return res; |
| 838 | } |
| 839 | |
| 840 | |
| 841 | void menu_get_ext_help(struct menu *menu, struct gstr *help) |
no test coverage detected