Changes between Version 2 and Version 3 of IntegerTypes
- Timestamp:
- Mar 21, 2010, 2:16:58 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
IntegerTypes
v2 v3 18 18 * `[u]intptr_t`, which is the size of an address, thus can contain a pointer 19 19 * `[u]int_fastXX_t`, which are '''at least''' XX bits long, but may be larger if the larger implementation is cheaper 20 21 = C types in MutekH = 20 21 These types are available from the standard `stdint.h` header and `hexo/types.h` header. 22 23 See [http://en.wikipedia.org/wiki/Stdint.h stdint.h wikipedia page] for details. 24 25 = Legacy compiler types in MutekH = 22 26 23 27 Using legacy integer types in MutekH's core code is not wanted. … … 27 31 Sometimes, because you are using huge amounts of code that 28 32 must be used without a complete rewrite, you may want to disable this 29 limitation adding the following line in the configuration file:33 limitation adding the following line in the build configuration file: 30 34 {{{ 31 35 CONFIG_HEXO_INTTYPES_DEPRECATED undefined