| 3544 | } |
| 3545 | |
| 3546 | const char * |
| 3547 | exclam(int force) |
| 3548 | { |
| 3549 | /* force == 0 occurs e.g. with sleep ray */ |
| 3550 | /* note that large force is usual with wands so that !! would |
| 3551 | require information about hand/weapon/wand */ |
| 3552 | return (const char *) ((force < 0) ? "?" : (force <= 4) ? "." : "!"); |
| 3553 | } |
| 3554 | |
| 3555 | void |
| 3556 | hit( |
no outgoing calls
no test coverage detected