17 lines
468 B
C
Vendored
17 lines
468 B
C
Vendored
/* Zeta API - Z/keys/endianness.h
|
|
______ ______________ ___
|
|
|__ / | ___|___ ___|/ \
|
|
/ /__| __| | | / - \
|
|
/______|_____| |__| /__/ \__\
|
|
Copyright (C) 2006-2025 Manuel Sainz de Baranda y Goñi.
|
|
Released under the terms of the GNU Lesser General Public License v3. */
|
|
|
|
#ifndef Z_keys_endianness_H
|
|
#define Z_keys_endianness_H
|
|
|
|
#define Z_ENDIANNESS_LITTLE 0
|
|
#define Z_ENDIANNESS_BIG 1
|
|
#define Z_ENDIANNESS_PDP 2
|
|
|
|
#endif /* Z_keys_endianness_H */
|