25 lines
458 B
C++
25 lines
458 B
C++
#include <myx/core/config.hpp>
|
|
#include <myx/core/endian_types.hpp>
|
|
|
|
#include <QDebug>
|
|
|
|
//NOLINTNEXTLINE
|
|
#define CMLIB_PROJECT_NAME "myxlib"
|
|
|
|
|
|
int main( int argc, char** argv )
|
|
{
|
|
(void)argc;
|
|
(void)argv;
|
|
|
|
beint64 bi = 1;
|
|
int64_t bii = reinterpret_cast< int64_t* >( &bi )[0]; //NOLINT
|
|
qDebug() << hex << bi << bii;
|
|
|
|
leint64 li = 1;
|
|
int64_t lii = reinterpret_cast< int64_t* >( &li )[0]; //NOLINT
|
|
qDebug() << hex << li << lii;
|
|
|
|
return( 0 );
|
|
} // main
|