From 8ac03cc9611c80bf4920469997a732a25371f08b Mon Sep 17 00:00:00 2001 From: Joshua Suskalo Date: Sat, 25 Sep 2021 13:24:06 -0500 Subject: [PATCH] Add a docstring to the main ns --- src/clj/coffi/ffi.clj | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/clj/coffi/ffi.clj b/src/clj/coffi/ffi.clj index d4e53ac..760cc6e 100644 --- a/src/clj/coffi/ffi.clj +++ b/src/clj/coffi/ffi.clj @@ -1,4 +1,7 @@ (ns coffi.ffi + "Functions for managing native allocations and resource scopes, creating handles + to native functions, serializing and deserializing Clojure data to native + structures, and loading native libraries." (:require [clojure.java.io :as io] [clojure.spec.alpha :as s]