| 295 | } |
| 296 | |
| 297 | RESTORE_WARNING_UNREACHABLE_CODE |
| 298 | |
| 299 | s_level * |
| 300 | find_level(const char *s) |
| 301 | { |
| 302 | s_level *curr; |
| 303 | for (curr = svs.sp_levchn; curr; curr = curr->next) |
| 304 | if (!strcmpi(s, curr->proto)) |
| 305 | break; |
| 306 | return curr; |
| 307 | } |
| 308 | |
| 309 | /* Find the branch that links the named dungeon. */ |
| 310 | staticfn int |
no outgoing calls
no test coverage detected