You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
604 B

define: DUK_USE_INTEGER_LE
feature_snippet: |
#if defined(DUK_OPT_FORCE_BYTEORDER)
#if (DUK_OPT_FORCE_BYTEORDER == 1)
#define DUK_USE_INTEGER_LE
#elif (DUK_OPT_FORCE_BYTEORDER == 2)
#define DUK_USE_INTEGER_LE
#elif (DUK_OPT_FORCE_BYTEORDER == 3)
#undef DUK_USE_INTEGER_LE
#else
#error invalid DUK_OPT_FORCE_BYTEORDER
#endif
#else
#define DUK_USE_INTEGER_LE
#endif
introduced: 1.0.0
removed: 1.4.0
default: true
conflicts:
- DUK_USE_INTEGER_BE
- DUK_USE_INTEGER_ME
tags:
- portability
description: >
Integer memory representation is little endian on the target platform.