flst / upstream /emscripten /test /other /embind_tsgen_bigint.cpp
arudradey's picture
Upload folder using huggingface_hub
00df61d verified
Raw
History Blame Contribute Delete
196 Bytes
#include <emscripten/bind.h>
#include <emscripten/val.h>
using namespace emscripten;
uint64_t bigint_fn(int64_t) { return 0; }
EMSCRIPTEN_BINDINGS(Test) {
function("bigintFn", &bigint_fn);
}