summaryrefslogtreecommitdiffstats
path: root/ffi-macros/README.md
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2019-01-16 13:43:07 +0100
committerJustus Winter <justus@sequoia-pgp.org>2019-01-16 13:52:53 +0100
commit83873fca4714be6ceb264d6d1ca7d56b4fda8150 (patch)
treef3088db6dc878b3413e4657fc828d998784eb1be /ffi-macros/README.md
parent977fae00f57ca87fa08568a3ce0f55a5382af13a (diff)
ffi-macros: New crate.
- This crate contains macros for Sequoia's FFI crate(s). Having it in a separate crate means that we can share it when we split the FFI crate into two. - More importantly, we need a separate crate if we want to create procedural macros. - As first macro, this patch adds ffi_catch_abort that wraps a function's body in a catch_unwind block, aborting on panics.
Diffstat (limited to 'ffi-macros/README.md')
-rw-r--r--ffi-macros/README.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/ffi-macros/README.md b/ffi-macros/README.md
new file mode 100644
index 00000000..f7f818a2
--- /dev/null
+++ b/ffi-macros/README.md
@@ -0,0 +1 @@
+This is a set of macros to help with the FFI glue for Sequoia.