FB_BIGENDIAN
- Source: https://www.freebasic.net/wiki/wikka.php?wakka=KeyPgDdFBBigEndian
- Last revised: 2016-03-12
Intrinsic define set by the compiler
Syntax
` FB_BIGENDIAN
`
Description
Define without a value created at compile time if compiling for a big endian target.
It can be used to compile parts of the program only if the target is big endian.
Examples
start GeSHi
vb
#IFDEF __FB_BIGENDIAN__
'...instructions only for big endian machines
#ELSE
'...instructions only for little endian machines
#ENDIFend GeSHi
Differences from QB
- Did not exist in QB
Back to DocToc