| 601 | char* WriteUInt64ToBuffer(uint64_t n, char* buffer) { return OutputUInt64AsString(n, buffer); } |
| 602 | |
| 603 | char* WriteInt64ToBuffer(int64_t n, char* buffer) { return OutputInt64AsString(n, buffer); } |
| 604 | |
| 605 | char* WriteIntegerToBuffer(int n, char* buffer) { return OutputIntegerAsString(n, buffer); } |
| 606 |
nothing calls this directly
no test coverage detected