| 731 | } |
| 732 | |
| 733 | void fxSlashPath(txString path, char from, char to) |
| 734 | { |
| 735 | txString s = path; |
| 736 | while (*s) { |
| 737 | if (*s == from) |
| 738 | *s = to; |
| 739 | s++; |
| 740 | } |
| 741 | } |
| 742 | |
| 743 | void fxTerminateLinker(txLinker* linker) |
| 744 | { |
no outgoing calls
no test coverage detected