| 316 | } |
| 317 | |
| 318 | txString fxToStringBuffer(txMachine* the, txSlot* theSlot, txString theBuffer, txSize theSize) |
| 319 | { |
| 320 | char* aString; |
| 321 | txSize aSize; |
| 322 | |
| 323 | aString = fxToString(the, theSlot); |
| 324 | aSize = mxStringLength(aString) + 1; |
| 325 | if (aSize > theSize) |
| 326 | mxRangeError("cannot buffer string"); |
| 327 | c_memcpy(theBuffer, aString, aSize); |
| 328 | return theBuffer; |
| 329 | } |
| 330 | |
| 331 | void fxUnsigned(txMachine* the, txSlot* theSlot, txUnsigned theValue) |
| 332 | { |
no test coverage detected