emscripten-tutorial

How to build an increasingly complex C/C++ codebase to WebAssembly
git clone https://git.tronto.net/emscripten-tutorial
Download | Log | Files | Refs | README

library.c (46B)


      1 int multiply(int a, int b) {
      2 	return a * b;
      3 }