| 86 | } |
| 87 | |
| 88 | staticfn char * |
| 89 | erode_obj_text(struct obj *otmp, char *buf) |
| 90 | { |
| 91 | int erosion = greatest_erosion(otmp); |
| 92 | |
| 93 | if (erosion) |
| 94 | wipeout_text(buf, (int) (strlen(buf) * erosion / (2 * MAX_ERODE)), |
| 95 | otmp->o_id ^ (unsigned) ubirthday); |
| 96 | return buf; |
| 97 | } |
| 98 | |
| 99 | char * |
| 100 | tshirt_text(struct obj *tshirt, char *buf) |
no test coverage detected