Merge pull request #439 from arthurmaciel/update-foreign-docs

Added tips on foreign docs
This commit is contained in:
Justin Ethier 2021-01-22 22:15:17 -05:00 committed by GitHub
commit c5ed1a648c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -71,3 +71,6 @@ Scheme | C
`opaque` | `void *`
`c-void` | `void`
Useful notes:
- Use `opaque` if you need to handle any kind of C pointer.
- Use `string` to handle C `const char*` (`symbol` is strictly used to represent Scheme symbols).