"Fossies" - the Fresh Open Source Software Archive

Member "namefix.pl/libs/html.pm" (13 Dec 2008, 382 Bytes) of package /linux/privat/old/namefix.pl_4.0.2.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Perl source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file. For more information about "html.pm" see the Fossies "Dox" file reference documentation.

    1 use strict;
    2 use warnings;
    3 
    4 #--------------------------------------------------------------------------------------------------------------
    5 # html_hack
    6 #--------------------------------------------------------------------------------------------------------------
    7 
    8 sub html
    9 {
   10     if($main::HTML_HACK)
   11     {
   12         my $string = shift;
   13         &file_append($main::html_file, $string);
   14     }
   15     return;
   16 }
   17 
   18 1;