Hi if i have a scheme function that accepts a variable number of float arguments what is the best way to pass the floats to C?
ie:

(define (pass-floats . floats)
  (let ((len (length floats)))
    (my_c_function len (list->*float floats))
  ))

how do i get the behavior of list->*float ?
thanks for any tips!

best rick


_______________________________________________
Chicken-users mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/chicken-users

Reply via email to