| 328 | #endif |
| 329 | |
| 330 | void |
| 331 | exportascii_sfo_long(NHFILE *nhfp, long *d_long, const char *myname UNUSED) |
| 332 | { |
| 333 | Sprintf(outbuf, "%ld", *d_long); |
| 334 | put_savefield(nhfp, outbuf, sizeof outbuf); |
| 335 | d_long++; |
| 336 | } |
| 337 | |
| 338 | void |
| 339 | exportascii_sfo_schar(NHFILE *nhfp, schar *d_schar, const char *myname UNUSED) |
nothing calls this directly
no test coverage detected