| 250 | |
| 251 | #if defined(WINCHAIN) || defined(TTY_GRAPHICS) |
| 252 | staticfn struct win_choices * |
| 253 | win_choices_find(const char *s) |
| 254 | { |
| 255 | int i; |
| 256 | |
| 257 | for (i = 0; winchoices[i].procs; i++) { |
| 258 | if (!strcmpi(s, winchoices[i].procs->name)) { |
| 259 | return &winchoices[i]; |
| 260 | } |
| 261 | } |
| 262 | return (struct win_choices *) 0; |
| 263 | } |
| 264 | #endif |
| 265 | |
| 266 | void |
no outgoing calls
no test coverage detected