summaryrefslogtreecommitdiff
path: root/src/libstddjb/uint32_bswapn.c
blob: faf731dee1d8da51c6fa5545b59ff936e7a5eb65 (plain)
1
2
3
4
5
6
7
8
9
10
/* ISC license. */

#include <stddef.h>

#include <skalibs/uint32.h>

void uint32_bswapn (uint32_t *x, size_t n)
{
  while (n--) uint32_bswapp(x++) ;
}