skalibs

Mirror/fork of https://skarnet.org/software/skalibs/
git clone https://ccx.te2000.cz/git/skalibs
Log | Files | Refs | README | LICENSE

uint64_bswapn.c (152B)


      1 /* ISC license. */
      2 
      3 #include <stddef.h>
      4 
      5 #include <skalibs/uint64.h>
      6 
      7 void uint64_bswapn (uint64_t *x, size_t n)
      8 {
      9   while (n--) uint64_bswapp(x++) ;
     10 }