| 22 | #define NOISY(x) //x |
| 23 | |
| 24 | void strcpy16_htod(uint16_t* dst, const uint16_t* src) |
| 25 | { |
| 26 | while (*src) { |
| 27 | char16_t s = htods(*src); |
| 28 | *dst++ = s; |
| 29 | src++; |
| 30 | } |
| 31 | *dst = 0; |
| 32 | } |
| 33 | |
| 34 | void printStringPool(const ResStringPool* pool) |
| 35 | { |
no outgoing calls
no test coverage detected