| Lufs documentation | Contained in the Lufs distribution. |
Lufs::C - C interface to perl
This interface is used by the C code to call the perl subs.
perlfs.c
Raoul Zwart, <rlzwart@cpan.org>
Copyright 2003 by Raoul Zwart
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Lufs documentation | Contained in the Lufs distribution. |
package Lufs::C; use vars qw/$AUTOLOAD/; use base 'Lufs::Glue'; our $object; our %config; sub AUTOLOAD { my $method = (split/::/,$AUTOLOAD)[-1]; $method eq 'DESTROY' && return; my $ret = $object->$method(@_); $object->TRACE($method, @_, $ret); $ret; } 1; __END__ # Below is stub documentation for your module. You'd better edit it!