File: u2a_endian.h

package info (click to toggle)
uni2ascii 4.20-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 992 kB
  • sloc: ansic: 8,730; sh: 4,471; tcl: 1,914; python: 53; makefile: 42
file content (11 lines) | stat: -rw-r--r-- 225 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
#ifndef GET_ENDIAN
extern short Get_Endianness(void);
#endif
#define GET_ENDIAN

/* Constants defining endian-ness values */

#define E_LITTLE_ENDIAN 0
#define E_BIG_ENDIAN 1
#define E_PDP_ENDIAN 2
#define E_UNKNOWN_ENDIAN 3