| 246 | } |
| 247 | |
| 248 | CC_NOINLINE static void String_Hex64(cc_string* str, cc_uint64 value) { |
| 249 | int shift; |
| 250 | |
| 251 | for (shift = 56; shift >= 0; shift -= 8) { |
| 252 | cc_uint8 part = (cc_uint8)(value >> shift); |
| 253 | String_AppendHex(str, part); |
| 254 | } |
| 255 | } |
| 256 | |
| 257 | void String_AppendConst(cc_string* str, const char* src) { |
| 258 | for (; *src; src++) { |
no test coverage detected