ffi :variadic? true
generated function do not use all arguments supplied
#449
Labels
:variadic? true
generated function do not use all arguments supplied
#449
I get unexpected results when using it.
As an example here is what it outputs from "printf" (defined in stdlib as
(def printf (ffi-fn libc "printf" [CCharP] CInt :variadic? true)
)):user => (printf "a" "b" "c")
a
It seems everything after the 1st argument is ignored.
The text was updated successfully, but these errors were encountered: