summaryrefslogtreecommitdiffstats
path: root/common/int_size.h
blob: cf66d687980d4159cca9a5f1405648c90d138174 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * File:	int_size.h
 *
 * Copyright (c) Freescale Semiconductor, Inc. All rights reserved.
 * See included license file for license details.
 */
#if !defined(_int_size_h_)
#define _int_size_h_

namespace elftosb
{

//! Supported sizes of integers.
typedef enum {
	kWordSize,		//!< 32-bit word.
	kHalfWordSize,	//!< 16-bit half word.
	kByteSize		//!< 8-bit byte.
} int_size_t;

}; // namespace elftosb

#endif // _int_size_h_