Help for this page

Select Code to Download


  1. or download this
    my $c= getc();
    return $c
    ...
    return $c
        if  $c < 0x4000
    return getc() + (($c-0x4000)<<8);
    
  2. or download this
    sub getc { ord( substr($buf,0,1,'') ); }