12 lines
306 B
C++
12 lines
306 B
C++
#include <testMain.h>
|
|
#include <epicsEndian.h>
|
|
#include <stdio.h>
|
|
|
|
MAIN(testByteOrder)
|
|
{
|
|
printf("EPICS_BYTE_ORDER: %s\n", (EPICS_BYTE_ORDER == EPICS_ENDIAN_LITTLE) ? "little" : "big");
|
|
printf("EPICS_FLOAT_WORD_ORDER: %s\n", (EPICS_FLOAT_WORD_ORDER == EPICS_ENDIAN_LITTLE) ? "little" : "big");
|
|
return 0;
|
|
}
|
|
|