| 250 | } |
| 251 | |
| 252 | void fxStringX(txMachine* the, txSlot* theSlot, txString theValue) |
| 253 | { |
| 254 | #ifdef mxSnapshot |
| 255 | fxCopyStringC(the, theSlot, theValue); |
| 256 | #else |
| 257 | theSlot->value.string = theValue; |
| 258 | theSlot->kind = XS_STRING_X_KIND; |
| 259 | #endif |
| 260 | } |
| 261 | |
| 262 | void fxStringBuffer(txMachine* the, txSlot* theSlot, txString theValue, txSize theSize) |
| 263 | { |
no test coverage detected