<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">package Archive::Cpio::File;

sub new {
    my ($class, $val) = @_;

    bless $val, $class;
}

sub name { my ($o) = @_; $o-&gt;{name} }
sub size { my ($o) = @_; length($o-&gt;{data}) }
sub get_content { my ($o) = @_; $o-&gt;{data} }

1;
</pre></body></html>