dotfiles/sbcl/.quicklisp/dists/quicklisp/software/cffi_0.20.1
2020-02-18 14:21:14 -05:00
..
doc Tmux etc 2020-02-18 14:21:14 -05:00
examples Tmux etc 2020-02-18 14:21:14 -05:00
grovel Tmux etc 2020-02-18 14:21:14 -05:00
libffi Tmux etc 2020-02-18 14:21:14 -05:00
scripts Tmux etc 2020-02-18 14:21:14 -05:00
src Tmux etc 2020-02-18 14:21:14 -05:00
tests Tmux etc 2020-02-18 14:21:14 -05:00
toolchain Tmux etc 2020-02-18 14:21:14 -05:00
uffi-compat Tmux etc 2020-02-18 14:21:14 -05:00
.gitignore Tmux etc 2020-02-18 14:21:14 -05:00
.travis.yml Tmux etc 2020-02-18 14:21:14 -05:00
cffi-examples.asd Tmux etc 2020-02-18 14:21:14 -05:00
cffi-grovel.asd Tmux etc 2020-02-18 14:21:14 -05:00
cffi-libffi.asd Tmux etc 2020-02-18 14:21:14 -05:00
cffi-tests.asd Tmux etc 2020-02-18 14:21:14 -05:00
cffi-toolchain.asd Tmux etc 2020-02-18 14:21:14 -05:00
cffi-uffi-compat.asd Tmux etc 2020-02-18 14:21:14 -05:00
cffi.asd Tmux etc 2020-02-18 14:21:14 -05:00
COPYRIGHT Tmux etc 2020-02-18 14:21:14 -05:00
HEADER Tmux etc 2020-02-18 14:21:14 -05:00
Makefile Tmux etc 2020-02-18 14:21:14 -05:00
README.md Tmux etc 2020-02-18 14:21:14 -05:00
TODO Tmux etc 2020-02-18 14:21:14 -05:00

Build Status

CFFI, the Common Foreign Function Interface, purports to be a portable foreign function interface for Common Lisp. The CFFI library is composed of a Lisp-implementation-specific backend in the CFFI-SYS package, and a portable frontend in the CFFI package.

The CFFI-SYS backend package defines a low-level interface to the native FFI support in the Lisp implementation. It offers operators for allocating and dereferencing foreign memory, calling foreign functions, and loading shared libraries. The CFFI frontend provides a declarative interface for defining foreign functions, structures, typedefs, enumerated types, etc. It is implemented in portable ANSI CL making use of the low-level operators exported by CFFI-SYS.

Please consult the manual for further details, including installation instructions.