* See display.h for descriptions of tp_sensemon() through * is_safemon(). Some of these were generating an awful lot of * code "behind the curtain", particularly canspotmon() (which is * still a macro but one that now expands to a pair of function * calls rather than to a ton of special case checks). Return * values are all int 0 or 1, not boolean. * * T
| 163 | * They're still implemented as macros within this file. |
| 164 | */ |
| 165 | int |
| 166 | tp_sensemon(struct monst *mon) |
| 167 | { |
| 168 | return _tp_sensemon(mon); |
| 169 | } |
| 170 | #define tp_sensemon(mon) _tp_sensemon(mon) |
| 171 | |
| 172 | int |
no outgoing calls
no test coverage detected