| 726 | }; |
| 727 | }; |
| 728 | PUGI__NS_END |
| 729 | |
| 730 | // Unicode utilities |
| 731 | PUGI__NS_BEGIN |
| 732 | inline uint16_t endian_swap(uint16_t value) |
| 733 | { |
| 734 | return static_cast<uint16_t>(((value & 0xff) << 8) | (value >> 8)); |
| 735 | } |
| 736 | |
| 737 | inline uint32_t endian_swap(uint32_t value) |
| 738 | { |
no outgoing calls
no test coverage detected