| 2926 | } |
| 2927 | |
| 2928 | void fxGenerateTag(void* console, txString buffer, txInteger bufferSize, txString path) |
| 2929 | { |
| 2930 | txMachine* the = console; |
| 2931 | if (path) |
| 2932 | c_snprintf(buffer, bufferSize, "#%d@%s", (int)the->tag, path); |
| 2933 | else |
| 2934 | c_snprintf(buffer, bufferSize, "#%d", (int)the->tag); |
| 2935 | the->tag++; |
| 2936 | } |
| 2937 | |
| 2938 | void fxVReport(void* console, txString theFormat, c_va_list theArguments) |
| 2939 | { |
no outgoing calls
no test coverage detected