blob: 4fa0a7bc2d536e6821fba7174d90642bcf773434 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* ISC license. */
#include <string.h>
#include <skalibs/uint16.h>
void uint16_reverse (char *s, size_t n)
{
while (n--)
{
char c = s[0] ;
s[0] = s[1] ;
s[1] = c ;
s += 2 ;
}
}
|