commit 4db6719b971d9c260ed59bebe9a080576ef5349e parent 4d5bdefd714f03d35d596ccd696e0092bcfb16e7 Author: Sebastian <sebastian@sebsite.pw> Date: Mon, 28 Mar 2022 17:27:12 -0400 endian: add README Signed-off-by: Sebastian <sebastian@sebsite.pw> Diffstat:
A | endian/README | | | 8 | ++++++++ |
1 file changed, 8 insertions(+), 0 deletions(-)
diff --git a/endian/README b/endian/README @@ -0,0 +1,8 @@ +The endian module provides support functions for converting the byte encoding +("endianness") of integers. The following abbreviations are used throughout the +module: + +- be - big endian; most significant byte first +- le - little endian; least significant byte first +- h - the endianness of the host system +- n - the endianness of the network (big endian)