| 265 | } |
| 266 | |
| 267 | void SwapUTF32 ( const UTF32Unit * utf32In, UTF32Unit * utf32Out, const size_t utf32Len ) { |
| 268 | for ( size_t i = 0; i < utf32Len; ++i ) utf32Out[i] = UTF32InSwap(utf32In+i); |
| 269 | } |
| 270 | |
| 271 | // ================================================================================================= |
| 272 |
nothing calls this directly
no test coverage detected