* Display list of strings in columnar format on readline's output stream. * 'matches' is list of strings, 'len' is number of strings in 'matches', * 'max' is maximum length of string in 'matches'. */
| 1776 | * 'max' is maximum length of string in 'matches'. |
| 1777 | */ |
| 1778 | void |
| 1779 | rl_display_match_list(char **matches, int len, int max) |
| 1780 | { |
| 1781 | |
| 1782 | fn_display_match_list(e, matches, (size_t)len, (size_t)max); |
| 1783 | } |
| 1784 | |
| 1785 | static const char * |
| 1786 | /*ARGSUSED*/ |
nothing calls this directly
no test coverage detected