r6rs-pffi icon indicating copy to clipboard operation
r6rs-pffi copied to clipboard

Portable Foreign Function Interface (FFI) for R6RS

Results 4 r6rs-pffi issues
Sort by recently updated
recently updated
newest added

Would it make sense to include these? ```scheme (define (utf8-pointer->string pointer) (and (not (= 0 (pointer->integer pointer))) (let loop ((n 0)) (if (= 0 (pointer-ref-c-uint8 pointer n)) (utf8->string (pointer->bytevector pointer...

How would you specify that a foreign procedures uses an integer type like `size_t` or `mode_t` whose size can vary by operating system and CPU architecture?

question

Here's a first cut for how to add the default file name extension for shared objects. I tested that this works in Chez; didn't yet implement it for any other...

Hi, I am just playing/exploring, but I love this library! A question came up when I was trying to do a minimal [hello world example](https://github.com/bstpierre/gtk-examples/blob/98aa5ebe6f850e50e14fe81285f96cfa02270d05/c/hello.c) with gtk+. How would we...

question