discard specific saved option string */
| 773 | |
| 774 | /* discard specific saved option string */ |
| 775 | staticfn void |
| 776 | unsaveoptstr(int optidx, int ophase) |
| 777 | { |
| 778 | int roleoptindx = opt2roleopt(optidx); |
| 779 | |
| 780 | if (roleoptvals[roleoptindx][ophase]) |
| 781 | free((genericptr_t) roleoptvals[roleoptindx][ophase]), |
| 782 | roleoptvals[roleoptindx][ophase] = 0; |
| 783 | } |
| 784 | |
| 785 | /* discard all saved option strings */ |
| 786 | void |
no test coverage detected