| 181 | } |
| 182 | |
| 183 | void String_AppendUInt32(cc_string* str, cc_uint32 num) { |
| 184 | char digits[STRING_INT_CHARS]; |
| 185 | int i, count = String_MakeUInt32(num, digits); |
| 186 | |
| 187 | for (i = count - 1; i >= 0; i--) { |
| 188 | String_Append(str, digits[i]); |
| 189 | } |
| 190 | } |
| 191 | |
| 192 | void String_AppendPaddedInt(cc_string* str, int num, int minDigits) { |
| 193 | char digits[STRING_INT_CHARS]; |
no test coverage detected