| 719 | } |
| 720 | |
| 721 | void fxReportLinkerError(txLinker* linker, txString theFormat, ...) |
| 722 | { |
| 723 | c_va_list arguments; |
| 724 | fprintf(stderr, "### "); |
| 725 | c_va_start(arguments, theFormat); |
| 726 | vfprintf(stderr, theFormat, arguments); |
| 727 | c_va_end(arguments); |
| 728 | fprintf(stderr, "!\n"); |
| 729 | linker->error = C_EINVAL; |
| 730 | c_longjmp(linker->jmp_buf, 1); |
| 731 | } |
| 732 | |
| 733 | void fxSlashPath(txString path, char from, char to) |
| 734 | { |
no outgoing calls
no test coverage detected