| [Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] | 
Convert Big Endian-ordered integer to Native-ordered integer
Source position: systemh.inc line 829
| function BEtoN( | 
| const AValue: SmallInt | 
| ):SmallInt; | 
| const AValue: Word | 
| ):Word; | 
| const AValue: LongInt | 
| ):LongInt; | 
| const AValue: DWord | 
| ):DWord; | 
| const AValue: Int64 | 
| ):Int64; | 
| const AValue: QWord | 
| ):QWord; | 
BEToN will rearrange the bytes in a Big-Endian number to the native order for the current processor. That is, for a big-endian processor, it will do nothing, and for a little-endian processor, it will invert the order of the bytes.
| 
 | Convert Little Endian-ordered integer to Native-ordered integer | |
| 
 | Convert Native-ordered integer to a Big Endian-ordered integer | |
| 
 | Convert Native-ordered integer to a Little Endian-ordered integer |