changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/ffi/readline/pkg.lisp

changeset 658: 804b5ee20a46
parent: 386d51cf61ca
author: Richard Westhaver <ellis@rwest.io>
date: Thu, 19 Sep 2024 23:23:02 -0400
permissions: -rw-r--r--
description: zstd completed (besides zdict), working on readline
1 ;;; pkg.lisp --- low-level bindings to librustls
2 
3 ;;; Commentary:
4 
5 ;; https://github.com/vindarel/cl-readline
6 
7 ;;; Code:
8 (defpackage :readline
9  (:use :cl :sb-alien :std/alien)
10  (:export :load-readline))
11 
12 (in-package :readline)
13 
14 (define-alien-loader "readline" t "/usr/lib/")