Remove a reference to long-long
This commit is contained in:
parent
857da5949a
commit
1ab231dee5
1 changed files with 3 additions and 4 deletions
|
|
@ -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 {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue