| 5419 | } |
| 5420 | |
| 5421 | const char * |
| 5422 | Japanese_item_name(int i, const char *ordinaryname) |
| 5423 | { |
| 5424 | const struct Jitem *j = Japanese_items; |
| 5425 | |
| 5426 | while (j->item) { |
| 5427 | if (i == j->item) |
| 5428 | return j->name; |
| 5429 | j++; |
| 5430 | } |
| 5431 | return ordinaryname; |
| 5432 | } |
| 5433 | |
| 5434 | const char * |
| 5435 | armor_simple_name(struct obj *armor) |
no outgoing calls
no test coverage detected