├── .gitignore ├── COPYING ├── Makefile ├── README.md ├── ffi-module.c ├── ffi.el ├── test.c └── test.el /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/emacs-ffi/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/emacs-ffi/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/emacs-ffi/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/emacs-ffi/HEAD/README.md -------------------------------------------------------------------------------- /ffi-module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/emacs-ffi/HEAD/ffi-module.c -------------------------------------------------------------------------------- /ffi.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/emacs-ffi/HEAD/ffi.el -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/emacs-ffi/HEAD/test.c -------------------------------------------------------------------------------- /test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/emacs-ffi/HEAD/test.el --------------------------------------------------------------------------------