flst / upstream /emscripten /test /other /lib_hello.c
arudradey's picture
Upload folder using huggingface_hub
00df61d verified
Raw
History Blame Contribute Delete
121 Bytes
#include <stdio.h>
#include <emscripten.h>
EMSCRIPTEN_KEEPALIVE void lib_say_hello() {
printf("Hello from lib!\n");
}