2

I am trying to write a wrapper for a C library that contains a function which takes another function to achieve polymorphism (i.e. a generic function). I would like to write my wrapper such that it takes a Scheme function and passes it to the generic function as a C function pointer. Does Guile provide functionality that would allow me to turn a Scheme function into a C function pointer?

1 Answers1

2

You have to use procedure->pointer procedure which is described in the manual.

amirouche
  • 7,682
  • 6
  • 40
  • 94