hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

README (354B)


      1 The endian module provides support functions for converting the byte encoding
      2 ("endianness") of integers. The following abbreviations are used throughout the
      3 module:
      4 
      5 - be - big endian; most significant byte first
      6 - le - little endian; least significant byte first
      7 - h - the endianness of the host system
      8 - n - the endianness of the network (big endian)