Added advices on foreign docs

This commit is contained in:
Arthur Maciel 2021-01-22 22:44:40 -03:00
parent 35f0c486cd
commit e901324ab0

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).