KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#cli
#claude-code
#codex
#developer-tools
#react
#windows
denoffi
★ 38
Open GitHub ↗
Deno Foreign Function Interface.
Download README (.md)
Explore Similar Repositories
SketchGNN
:
SketchGNN
sanskrit_tts
:
Sanskrit text to speech
reacttodo
:
No description available.
Gcx
:
A tool to decompile GCX bytecode from Metal Gear Solid games to the original GCL script
usbip-gui
:
An attempt at wrapping the usbip linux kernel module with a gui for easier uasability/configurability
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
denoffi
?
Download (.md)
# Deno Foreign Function Interface (WIP & Need Help) [](https://github.com/denoffi/denoffi/actions/workflows/ci.yml) [](https://github.com/denoffi/denoffi/releases) [](https://github.com/denoffi/denoffi/blob/main/LICENSE) **Deno Foreign Function Interface.** ## Example ```ts import * as ffi from "https://deno.land/x/ffi/mod.ts"; type Fn0 = ffi.CFunction<"int add(int, int)">; // { "add": { parameters: ["i32", "i32"]; result: "i32" } } type Fn1 = ffi.CFunction<"long add(long)">; // { "abs": { parameters: ["i64"]; result: "i64" } } type Fn2 = ffi.CFunction<"void hello(int)">; // { "hello": { parameters: ["i32"]; result: "void" } } type Fn3 = ffi.CFunction<"void hello()">; // { "hello": { parameters: []; result: "void" } } type Fn4 = ffi.CFunction<"void hello(void)">; // { "hello": { parameters: ["void"]; result: "void" } } ``` ### License [denoffi](https://github.com/denoffi/denoffi) is released under the MIT License. See the bundled [LICENSE](./LICENSE) file for details.