Source: cffi Maintainer: Debian Common Lisp Team Uploaders: Peter Van Eynde , Sébastien Villemot Section: lisp Priority: optional Build-Depends: debhelper-compat (= 13), debhelper (>= 12.8~), texinfo, sbcl, texlive-extra-utils, texlive, texlive-plain-generic Standards-Version: 4.5.1 Vcs-Browser: https://salsa.debian.org/common-lisp-team/cffi Vcs-Git: https://salsa.debian.org/common-lisp-team/cffi.git Homepage: https://common-lisp.net/project/cffi/ Rules-Requires-Root: no Package: cl-cffi Architecture: all Depends: ${misc:Depends}, cl-alexandria, cl-trivial-features, cl-babel, gcc, libc6-dev | libc-dev, pkg-config, libffi-dev, zlib1g-dev Suggests: cl-bordeaux-threads, cl-rt Description: Common Foreign Function Interface for Common Lisp 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. It is implemented in portable ANSI CL making use of the low-level operators exported by CFFI-SYS. . A UFFI compatibility layer is also being developed.