summaryrefslogtreecommitdiff
path: root/lib/byte.pm
blob: cc23b40f4f46899ed1b5c07ed4b52c54d0808960 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package byte;

sub import {
    $^H |= 0x00000010;
}

sub unimport {
    $^H &= ~0x00000010;
}

sub AUTOLOAD {
    require "byte_heavy.pl";
    goto &$AUTOLOAD;
}

sub length ($);

1;
__END__

=head1 NAME

byte - Perl pragma to turn force treating strings as bytes not UNICODE

=head1 SYNOPSIS

    use byte;
    no byte;

=head1 DESCRIPTION


=cut