On 8/6/07, Ivan Raikov <[EMAIL PROTECTED]> wrote: > > Splitting the #>! did help, thanks. Also, if a C function returns > NULL, is the equivalent Scheme value #f, or is it a value that > satisfies the null-pointer? predicate? It seems like my null-pointer? > checks are complaining about bad argument type. >
#f. null-pointer? is used to test actual pointer objects for having a zero address slot. It is an accessor for the low-level machine-pointer object, so to speak. cheers, felix _______________________________________________ Chicken-users mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/chicken-users
