| 18 | staticfn void stat_update_time(void); |
| 19 | |
| 20 | char * |
| 21 | get_strength_str(void) |
| 22 | { |
| 23 | static char buf[32]; |
| 24 | int st = ACURR(A_STR); |
| 25 | |
| 26 | if (st > 18) { |
| 27 | if (st > STR18(100)) |
| 28 | Sprintf(buf, "%2d", st - 100); |
| 29 | else if (st < STR18(100)) |
| 30 | Sprintf(buf, "18/%02d", st - 18); |
| 31 | else |
| 32 | Sprintf(buf, "18/**"); |
| 33 | } else |
| 34 | Sprintf(buf, "%-1d", st); |
| 35 | |
| 36 | return buf; |
| 37 | } |
| 38 | |
| 39 | void |
| 40 | check_gold_symbol(void) |
no outgoing calls
no test coverage detected