cffi

The Common Foreign Function Interface (by cffi)

Cffi Alternatives

Similar projects and alternatives to cffi

  1. TypeScript

    1,419 cffi VS TypeScript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  2. CodeRabbit

    CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.

    CodeRabbit logo
  3. book

    654 cffi VS book

    The Rust Programming Language

  4. FrameworkBenchmarks

    Source for the TechEmpower Framework Benchmarks project

  5. love

    265 cffi VS love

    LÖVE is an awesome 2D game framework for Lua.

  6. racket

    196 cffi VS racket

    The Racket repository

  7. clog

    153 cffi VS clog

    CLOG - The Common Lisp Omnificent GUI

  8. ocaml

    129 cffi VS ocaml

    The core OCaml system: compilers, runtime system, base libraries

  9. InfluxDB

    InfluxDB high-performance time series database. Collect, organize, and act on massive volumes of high-resolution data to power real-time intelligent systems.

    InfluxDB logo
  10. paip-lisp

    76 cffi VS paip-lisp

    Lisp code for the textbook "Paradigms of Artificial Intelligence Programming"

  11. BabylonJS

    67 cffi VS BabylonJS

    Babylon.js is a powerful, beautiful, simple, and open game and rendering engine packed into a friendly JavaScript framework.

  12. cl-cookbook

    58 cffi VS cl-cookbook

    The Common Lisp Cookbook

  13. jMonkeyEngine

    A complete 3-D game development suite written in Java.

  14. Pipenv

    34 cffi VS Pipenv

    Python Development Workflow for Humans.

  15. cl-autowrap

    9 cffi VS cl-autowrap

    (c-include "file.h") => complete FFI wrapper

  16. polymorphic-functions

    A function type to dispatch on types instead of classes with partial support for dispatching on optional and keyword argument types.

  17. trivial-gamekit

    7 cffi VS trivial-gamekit

    Simple framework for making 2D games

  18. py4cl2

    11 cffi VS py4cl2

    Call python from Common Lisp

  19. dhall

    11 cffi VS dhall

    Maintainable configuration files

  20. trial

    11 cffi VS trial

    A modular Common Lisp game engine

  21. cl-parametric-types

    (BETA) C++-style templates for Common Lisp

  22. cl-objc

    6 cffi VS cl-objc

    CL-OBJC is a portable common-lisp/objective-c bridge written using CFFI. The aim is to be able to build Cocoa applications on Mac OS X by using InterfaceBuilder to design the GUI and then implement the code in common-lisp. (My attempt to revive this project)

  23. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better cffi alternative or higher similarity.

cffi discussion

Log in or Post with

cffi reviews and mentions

Posts with mentions or reviews of cffi. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-21.
  • A few newbie questions about lisp
    4 projects | /r/Common_Lisp | 21 May 2023
    When you want to do anything that breaks the nice bubble of your Lisp image, you might want to know a bit about your operating system's programming interface. This will come in handy if you ever need to wrap a library with CFFI. There are some things that are pretty inconvenient as a rule (like dealing with any protocol that uses network byte order), but if you stay within the bubble of your Lisp image, you won't really notice them.
  • *UPDATE* - CL-OBJC
    3 projects | /r/Common_Lisp | 6 Mar 2023
    I'm just posting the work that I have done over the last year or so on CL-Objc. I'm still blocked from better support (e.g., passing structs by value for frameworks like UIKit). I just wanted to post what I have done online for others interested in the work or motivated to collaborate on this.
  • Waiting on feedback - CFFI PR
    2 projects | /r/Common_Lisp | 2 Mar 2023
    Good morning ladies and gentlemen, I have been waiting on some feedback for PR in CFFI. This feature is blocking me from reviving CL-OBJC. Any help will be appreciated. Thank you in advance.
  • Anyone else able to kill threads in SBCL on M1 mac?
    1 project | /r/lisp | 8 Feb 2023
    Is that actually https://github.com/cffi/cffi/commit/33970351e71bb5f12ba56fc40270089e948ae112 ? I.e. after loading cl+ssl. (Although Hunchentoot does not interrupt threads)
  • Programming the Raspberry Pi GPIO pins using Common Lisp?
    5 projects | /r/lisp | 1 Feb 2023
    Maybe access the pins using CFFI, https://github.com/cffi/cffi package and one the libraries mentioned here? https://www.bigmessowires.com/2018/05/26/raspberry-pi-gpio-programming-in-c/
  • Why Functional Programming Should Be the Future of Software
    11 projects | news.ycombinator.com | 2 Nov 2022
  • Updating Quicklisp Packages
    1 project | /r/Common_Lisp | 8 Sep 2022
    FTR, on my system QL fetches CFFI 0.23.0 and the fix/error I'm talking about is https://github.com/cffi/cffi/blob/master/src/libraries.lisp#L106 and seems to have been added iin this PR https://github.com/cffi/cffi/pull/173/commits/263b38f4f2600dbacde8f2b313620c35a563c6df so the fix should be in CFFI 0.24.0 released 24 March 2021.
  • CFFI and frameworks on OSX
    1 project | /r/sbcl | 8 Sep 2022
    FTR: this is the PR https://github.com/cffi/cffi/pull/173/commits/263b38f4f2600dbacde8f2b313620c35a563c6df
  • interested in learning lisp, (specifically for games, but also for everything else including tui and gui applications for linux. currently have next to no programming knowledge, can i get forwarded some resources and some tips on what exactly i should do? any videos i should watch?
    17 projects | /r/lisp | 23 Jun 2022
    C: Alternatively (more difficult) you could try to wrap the underlying C layers of either of those mentioned under Python with CFFI. The C-based game engine, Raylib, is also wrappable this way. I finished a super cool walking simulator in CL with that, but it is more tedious than the others since raylib is really barebones.
  • Common Lisp
    18 projects | news.ycombinator.com | 2 Oct 2021
    I feel inspired to start Lisp after being disappointed with the "open" source scene of 2021. I'd rather pay LispWorks a yearly fee and be left alone than dealing with unbalanced people in the Python space. The free Lisp implementations also look somewhat isolated from the ideological wars.

    However, a C interface is required. Is this one the recommended solution? Is it really portable?

    https://common-lisp.net/project/cffi/

    What is the speed compared to a Python C extension? Are implementation-specific C interfaces faster (I guess they are)?

    Sorry for so many questions, but these can usually only be answered by people who have actually used the interface.

  • A note from our sponsor - InfluxDB
    influxdata.com | 19 Apr 2025
    Collect, organize, and act on massive volumes of high-resolution data to power real-time intelligent systems. Learn more →

Stats

Basic cffi repo stats
16
452
4.8
about 1 month ago

cffi/cffi is an open source project licensed under MIT License which is an OSI approved license.

The primary programming language of cffi is Common Lisp.


Sponsored
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
coderabbit.ai

Did you know that Common Lisp is
the 34th most popular programming language
based on number of references?