Next Lightweight Databases 33

Bytes vs. Positions

        my $position = tell FH;
        # read and write FH here ...
        seek FH, $position, SEEK_SET;
        seek FH, 0, SEEK_SET;
        binmode(FH);


Next Copyright © 2003 M. J. Dominus