Remove a reference to long-long

This commit is contained in:
Joshua Suskalo 2022-11-16 16:57:52 -06:00
parent 857da5949a
commit 1ab231dee5
No known key found for this signature in database
GPG key ID: 9B6BA586EFF1B9F0

View file

@ -132,14 +132,13 @@ Coffi defines a basic set of primitive types:
Each of these types maps to their C counterpart. Values of any of these Each of these types maps to their C counterpart. Values of any of these
primitive types except for `pointer` will be cast with their corresponding primitive types except for `pointer` will be cast with their corresponding
Clojure function (with `long-long` mapping to the `long` function) when they are Clojure function when they are passed as arguments to native functions.
passed as arguments to native functions. Additionally, the `c-string` type is Additionally, the `c-string` type is defined, although it is not primitive.
defined, although it is not primitive.
### Composite Types ### Composite Types
In addition, some composite types are also defined in coffi, including struct In addition, some composite types are also defined in coffi, including struct
and union types (unions will be discussed with serialization and and union types (unions will be discussed with serialization and
deserialization). For an example c struct and function: deserialization). For an example C struct and function:
```c ```c
typedef struct point { typedef struct point {