| 635 | } |
| 636 | |
| 637 | staticfn boolean |
| 638 | cnf_line_HACKDIR(char *bufp) |
| 639 | { |
| 640 | #ifdef NOCWD_ASSUMPTIONS |
| 641 | adjust_prefix(bufp, HACKPREFIX); |
| 642 | #else /*NOCWD_ASSUMPTIONS*/ |
| 643 | #ifdef MICRO |
| 644 | (void) strncpy(gh.hackdir, bufp, PATHLEN - 1); |
| 645 | #else /* MICRO */ |
| 646 | nhUse(bufp); |
| 647 | #endif /* MICRO */ |
| 648 | #endif /*NOCWD_ASSUMPTIONS*/ |
| 649 | return TRUE; |
| 650 | } |
| 651 | |
| 652 | staticfn boolean |
| 653 | cnf_line_LEVELDIR(char *bufp) |
nothing calls this directly
no test coverage detected