99_myUtils.pm 400 B

12345678910111213141516171819202122
  1. ##############################################
  2. # $Id: myUtilsTemplate.pm 7570 2015-01-14 18:31:44Z rudolfkoenig $
  3. #
  4. # Save this file as 99_myUtils.pm, and create your own functions in the new
  5. # file. They are then available in every Perl expression.
  6. package main;
  7. use strict;
  8. use warnings;
  9. use POSIX;
  10. sub
  11. myUtils_Initialize($$)
  12. {
  13. my ($hash) = @_;
  14. }
  15. # Enter you functions below _this_ line.
  16. 1;