| 278 | } |
| 279 | |
| 280 | void |
| 281 | exportascii_sfo_bitfield(NHFILE *nhfp, uint8_t *d_bitfield, const char *myname UNUSED, int bflen UNUSED) |
| 282 | { |
| 283 | /* for bitfields, cnt is the number of bits, not an array */ |
| 284 | Sprintf(outbuf, "%hu", (unsigned short) *d_bitfield); |
| 285 | put_savefield(nhfp, outbuf, sizeof outbuf); |
| 286 | } |
| 287 | |
| 288 | void |
| 289 | exportascii_sfo_boolean(NHFILE *nhfp, boolean *d_boolean, const char *myname UNUSED) |
nothing calls this directly
no test coverage detected