| 734 | } |
| 735 | |
| 736 | void |
| 737 | exportascii_sfi_schar(NHFILE *nhfp, schar *d_schar, const char *myname UNUSED) |
| 738 | { |
| 739 | schar tmp; |
| 740 | char *rstr; |
| 741 | |
| 742 | rstr = get_savefield(nhfp, linebuf, BUFSZ); |
| 743 | tmp = (schar) atoi(rstr); |
| 744 | #ifdef SAVEFILE_DEBUGGING |
| 745 | if (nhfp->structlevel && tmp != *d_schar) |
| 746 | report_problem_ascii(nhfp, myparent, myname, parent); |
| 747 | else |
| 748 | #endif |
| 749 | *d_schar = tmp; |
| 750 | d_schar++; |
| 751 | } |
| 752 | |
| 753 | void |
| 754 | exportascii_sfi_int16(NHFILE *nhfp, short *d_short, const char *myname UNUSED) |
nothing calls this directly
no test coverage detected