Files
cell/source/jsffi.h
John Alanbrook 8627fc52ef
Some checks failed
Build and Deploy / package-dist (push) Blocked by required conditions
Build and Deploy / deploy-itch (push) Blocked by required conditions
Build and Deploy / deploy-gitea (push) Blocked by required conditions
Build and Deploy / build-linux (push) Successful in 1m15s
Build and Deploy / build-windows (CLANG64) (push) Failing after 11m46s
actors in C now
2025-03-18 18:18:56 -05:00

9 lines
138 B
C

#ifndef FFI_H
#define FFI_H
#include <quickjs.h>
void ffi_load(JSContext *js);
int js_print_exception(JSContext *js, JSValue v);
#endif