Mercurial > hg > orthanc
view OrthancFramework/Resources/CMake/WebAssembly/ArithmeticTests/Run2.cpp @ 5509:46fa46c83628
upgraded to jsoncpp 1.9.5
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 24 Jan 2024 18:16:17 +0100 |
parents | d25f4c0fa160 |
children |
line wrap: on
line source
#include <iostream> #include <emscripten/emscripten.h> extern "C" { void EMSCRIPTEN_KEEPALIVE Run2() { // This stuff is not properly discovered by DCMTK 3.6.2 configuration scripts std::cerr << std::endl << std::endl; std::cerr << "/**" << std::endl; std::cerr << "#define SIZEOF_CHAR " << sizeof(char) << std::endl; std::cerr << "#define SIZEOF_DOUBLE " << sizeof(double) << std::endl; std::cerr << "#define SIZEOF_FLOAT " << sizeof(float) << std::endl; std::cerr << "#define SIZEOF_INT " << sizeof(int) << std::endl; std::cerr << "#define SIZEOF_LONG " << sizeof(long) << std::endl; std::cerr << "#define SIZEOF_SHORT " << sizeof(short) << std::endl; std::cerr << "#define SIZEOF_VOID_P " << sizeof(void*) << std::endl; std::cerr << "#define C_CHAR_UNSIGNED " << (!std::is_signed<char>()) << std::endl; std::cerr << "**/" << std::endl; std::cerr << std::endl << std::endl; } }