XS for redtable done for set_gamma_ramp
[sdlgit/SDL_perl.git] / test / 64encode.pl
CommitLineData
bfd90409 1#!/usr/bin/perl
2
3use MIME::Base64 qw/ encode_base64 /;
4
5open FILE, "< $ARGV[0]" or die "$!\n";
6
7while (read FILE, $buf, 60*57) {
8 print encode_base64($buf);
9}