| 286 | } |
| 287 | |
| 288 | void |
| 289 | exportascii_sfo_boolean(NHFILE *nhfp, boolean *d_boolean, const char *myname UNUSED) |
| 290 | { |
| 291 | if (nhfp->fpdebug) |
| 292 | fprintf(nhfp->fpdebug, "(%s)\n", (*d_boolean) ? "TRUE" : "FALSE"); |
| 293 | Sprintf(outbuf, "%s", *d_boolean ? "true" : "false"); |
| 294 | put_savefield(nhfp, outbuf, sizeof outbuf); |
| 295 | d_boolean++; |
| 296 | } |
| 297 | |
| 298 | void exportascii_sfo_genericptr(NHFILE *nhfp, genericptr_t *d_genericptr, |
| 299 | const char *myname UNUSED); |
nothing calls this directly
no test coverage detected