version of shkname() for beginning of sentence */
| 840 | |
| 841 | /* version of shkname() for beginning of sentence */ |
| 842 | char * |
| 843 | Shknam(struct monst *mtmp) |
| 844 | { |
| 845 | char *nam = shkname(mtmp); |
| 846 | |
| 847 | /* 'nam[]' is almost certainly already capitalized, but be sure */ |
| 848 | nam[0] = highc(nam[0]); |
| 849 | return nam; |
| 850 | } |
| 851 | |
| 852 | /* shopkeeper's name, without any visibility constraint; if hallucinating, |
| 853 | will yield some other shopkeeper's name (not necessarily one residing |
no test coverage detected