2015-09-21 19:00:39 -04:00
2015-09-21 18:53:11 -04:00
2015-09-20 19:30:19 -04:00
2015-09-21 18:51:26 -04:00
2015-09-20 19:30:19 -04:00
2015-09-20 19:30:19 -04:00
2015-09-21 18:50:41 -04:00
2015-09-20 19:30:19 -04:00
2015-09-21 19:00:39 -04:00

FFI

An easy way to call external functions (e.g. C functions) from Elixir.

** This is alpha software **

Example Program

defmodule MyLib do
  use FFI.Library

  ffi_lib "c"

  attach_function :puts, [:string], :int
end

MyLib.puts(["Hello world"])

License

MIT

Description
Migration from elixir-ffi due to it's mixfile being deprecated as of now. - Updated mixfile - Slight code changes to be more modern/functional (- Better docs)
Readme 60 KiB
Languages
Elixir 52.4%
C 42.9%
Makefile 4.7%