skalibs

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

uint16_bswapn.c (152B)


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