File: endianness.h

package info (click to toggle)
ghostscript 10.0.0~dfsg-11%2Bdeb12u7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 98,252 kB
  • sloc: ansic: 891,828; python: 7,649; cpp: 6,493; cs: 6,209; sh: 6,043; java: 4,028; perl: 2,372; tcl: 1,639; makefile: 521; awk: 66; javascript: 43; yacc: 18
file content (17 lines) | stat: -rw-r--r-- 234 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef LEPTONICA_ENDIANNESS_H
#define LEPTONICA_ENDIANNESS_H

#include "arch.h"

#if ARCH_IS_BIG_ENDIAN
#define L_BIG_ENDIAN
#endif

#ifdef L_BIG_ENDIAN
#else
# ifndef L_LITTLE_ENDIAN
#  define L_LITTLE_ENDIAN
# endif
#endif

#endif