Files
bootloader/apps/elftosb/common/int_size.h
László Monda e6c1fce5b4 Add KBOOT.
2016-08-10 01:45:15 +02:00

23 lines
465 B
C++

/*
* 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_