| 336 | } |
| 337 | |
| 338 | void |
| 339 | exportascii_sfo_schar(NHFILE *nhfp, schar *d_schar, const char *myname UNUSED) |
| 340 | { |
| 341 | int itmp; |
| 342 | itmp = (int) *d_schar; |
| 343 | Sprintf(outbuf, "%d", itmp); |
| 344 | put_savefield(nhfp, outbuf, sizeof outbuf); |
| 345 | d_schar++; |
| 346 | } |
| 347 | |
| 348 | void |
| 349 | exportascii_sfo_int16(NHFILE *nhfp, short *d_short, const char *myname UNUSED) |
nothing calls this directly
no test coverage detected