| 909 | } |
| 910 | |
| 911 | void fxStringifyJSONInteger(txMachine* the, txJSONStringifier* theStringifier, txInteger theInteger) |
| 912 | { |
| 913 | char aBuffer[256]; |
| 914 | fxIntegerToString(the, theInteger, aBuffer, sizeof(aBuffer)); |
| 915 | fxStringifyJSONChars(the, theStringifier, aBuffer, (txSize)c_strlen(aBuffer)); |
| 916 | } |
| 917 | |
| 918 | void fxStringifyJSONName(txMachine* the, txJSONStringifier* theStringifier, txInteger* theFlag) |
| 919 | { |
no test coverage detected