| 670 | } |
| 671 | |
| 672 | staticfn boolean |
| 673 | cnf_line_SAVEDIR(char *bufp) |
| 674 | { |
| 675 | #ifdef NOCWD_ASSUMPTIONS |
| 676 | adjust_prefix(bufp, SAVEPREFIX); |
| 677 | #else /*NOCWD_ASSUMPTIONS*/ |
| 678 | #ifdef MICRO |
| 679 | char *ptr; |
| 680 | |
| 681 | if ((ptr = strchr(bufp, ';')) != 0) { |
| 682 | *ptr = '\0'; |
| 683 | } |
| 684 | |
| 685 | (void) strncpy(gs.SAVEP, bufp, SAVESIZE - 1); |
| 686 | append_slash(gs.SAVEP); |
| 687 | #else /* MICRO */ |
| 688 | nhUse(bufp); |
| 689 | #endif /* MICRO */ |
| 690 | #endif /*NOCWD_ASSUMPTIONS*/ |
| 691 | return TRUE; |
| 692 | } |
| 693 | |
| 694 | staticfn boolean |
| 695 | cnf_line_BONESDIR(char *bufp) |
nothing calls this directly
no test coverage detected