| 715 | d_int++; |
| 716 | } |
| 717 | void |
| 718 | exportascii_sfi_long(NHFILE *nhfp, long *d_long, const char *myname UNUSED) |
| 719 | { |
| 720 | long tmp; |
| 721 | long long lltmp; |
| 722 | char *rstr; |
| 723 | |
| 724 | rstr = get_savefield(nhfp, linebuf, BUFSZ); |
| 725 | lltmp = atoll(rstr); |
| 726 | tmp = (long) lltmp; |
| 727 | #ifdef SAVEFILE_DEBUGGING |
| 728 | if (nhfp->structlevel && tmp != *d_long) |
| 729 | report_problem_ascii(nhfp, myparent, myname, parent); |
| 730 | else |
| 731 | #endif |
| 732 | *d_long = tmp; |
| 733 | d_long++; |
| 734 | } |
| 735 | |
| 736 | void |
| 737 | exportascii_sfi_schar(NHFILE *nhfp, schar *d_schar, const char *myname UNUSED) |
nothing calls this directly
no test coverage detected