| 838 | } |
| 839 | |
| 840 | struct gstr get_relations_str(struct symbol **sym_arr, struct list_head *head) |
| 841 | { |
| 842 | struct symbol *sym; |
| 843 | struct gstr res = str_new(); |
| 844 | int i; |
| 845 | |
| 846 | for (i = 0; sym_arr && (sym = sym_arr[i]); i++) |
| 847 | get_symbol_str(&res, sym, head); |
| 848 | if (!i) |
| 849 | str_append(&res, "No matches found.\n"); |
| 850 | return res; |
| 851 | } |
| 852 | |
| 853 | |
| 854 | void menu_get_ext_help(struct menu *menu, struct gstr *help) |
no test coverage detected