| 926 | } |
| 927 | |
| 928 | staticfn void |
| 929 | outheader(void) |
| 930 | { |
| 931 | char linebuf[BUFSZ]; |
| 932 | char *bp; |
| 933 | |
| 934 | Strcpy(linebuf, " No Points Name"); |
| 935 | bp = eos(linebuf); |
| 936 | while (bp < linebuf + COLNO - 9) |
| 937 | *bp++ = ' '; |
| 938 | Strcpy(bp, "Hp [max]"); |
| 939 | topten_print(linebuf); |
| 940 | } |
| 941 | |
| 942 | DISABLE_WARNING_FORMAT_NONLITERAL |
| 943 |
no test coverage detected