mons[]->pmname for a monster */
| 1310 | |
| 1311 | /* mons[]->pmname for a monster */ |
| 1312 | const char * |
| 1313 | mon_pmname(struct monst *mon) |
| 1314 | { |
| 1315 | /* for neuter, mon->data->pmnames[MALE] will be Null and use [NEUTRAL] */ |
| 1316 | return pmname(mon->data, Mgender(mon)); |
| 1317 | } |
| 1318 | |
| 1319 | /* mons[]->pmname for a corpse or statue or figurine */ |
| 1320 | const char * |
no test coverage detected