Swap the bytes in an array of unsigned longs.
| 180 | // Swap the bytes in an array of unsigned longs. |
| 181 | // |
| 182 | static void swap4(uint* ip, uint* op, int count) |
| 183 | { |
| 184 | while (count) |
| 185 | { |
| 186 | *op++ = swap4(*ip++); |
| 187 | count--; |
| 188 | } |
| 189 | } |
| 190 | |
| 191 | // |
| 192 | // Swap the bytes in an unsigned short. |
no outgoing calls
no test coverage detected