| 201 | } |
| 202 | |
| 203 | static void insertChar (char* dest, uint32_t length, char charToInsert, uint32_t numRepetitions) |
| 204 | { |
| 205 | std::memmove (dest + numRepetitions, dest, (size_t) length); |
| 206 | |
| 207 | for (uint32_t i = 0; i < numRepetitions; ++i) |
| 208 | dest[i] = charToInsert; |
| 209 | } |
| 210 | |
| 211 | static char* writeAsExponentNotation (char* dest, uint32_t totalLength, int exponent) |
| 212 | { |
nothing calls this directly
no outgoing calls
no test coverage detected