Swap the bytes in an array of unsigned shorts.
| 168 | // Swap the bytes in an array of unsigned shorts. |
| 169 | // |
| 170 | static void swap2(ushort* ip, ushort* op, int count) |
| 171 | { |
| 172 | while (count) |
| 173 | { |
| 174 | *op++ = swap2(*ip++); |
| 175 | count--; |
| 176 | } |
| 177 | } |
| 178 | |
| 179 | // |
| 180 | // Swap the bytes in an array of unsigned longs. |
no outgoing calls
no test coverage detected