| 726 | string cursearch, cursearchuc; |
| 727 | |
| 728 | void searchnickname(const char *name) |
| 729 | { |
| 730 | if(!name || !name[0]) return; |
| 731 | copystring(cursearch, name); |
| 732 | copystring(cursearchuc, name); |
| 733 | strtoupper(cursearchuc); |
| 734 | showmenu("search"); |
| 735 | } |
| 736 | COMMAND(searchnickname, "s"); |
| 737 | |
| 738 | VAR(showallservers, 0, 1, 1); |
nothing calls this directly
no test coverage detected