| 346 | } |
| 347 | |
| 348 | void |
| 349 | exportascii_sfo_int16(NHFILE *nhfp, short *d_short, const char *myname UNUSED) |
| 350 | { |
| 351 | Sprintf(outbuf, "%hd", *d_short); |
| 352 | put_savefield(nhfp, outbuf, sizeof outbuf); |
| 353 | d_short++; |
| 354 | } |
| 355 | |
| 356 | void |
| 357 | exportascii_sfo_size_t(NHFILE *nhfp, size_t *d_size_t, const char *myname UNUSED) |
nothing calls this directly
no test coverage detected