├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md └── src ├── main.rs └── multiply.c /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /target 3 | main 4 | *.o 5 | *.a -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanjacosic/rust-ffi-to-c/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanjacosic/rust-ffi-to-c/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanjacosic/rust-ffi-to-c/HEAD/README.md -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanjacosic/rust-ffi-to-c/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/multiply.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanjacosic/rust-ffi-to-c/HEAD/src/multiply.c --------------------------------------------------------------------------------