blob: 4e02ff3c83ece3f424898c797eaa32e3c046d899 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/*
* CENA C++ Utilities
*
* Copyright 1990, 1991, 1992
* Laboratoire de Recherche en Informatique (LRI)
* Centre d'Etudes de la Navigation Aerienne (CENA)
*
* words and bytes
*
* $Id$
* $CurLog$
*/
#ifndef word_h_
#define word_h_
typedef unsigned char byte;
typedef unsigned short sword; /* 16 bits */
typedef unsigned long lword; /* 32 bits */
#ifndef swsize
#define swsize 2
#endif
#ifndef lwsize
#define lwsize 4
#endif
#endif /* word_h_ */
|