diff options
author | lvw <lvw@e10066b5-e1e2-0310-b819-94efdf66514b> | 2004-08-29 13:48:14 +0000 |
---|---|---|
committer | lvw <lvw@e10066b5-e1e2-0310-b819-94efdf66514b> | 2004-08-29 13:48:14 +0000 |
commit | e287c9b102fe10877f19f7b3c3e10c62209adbce (patch) | |
tree | 1b06a0f1b6d3bb6a071596e493ab44ab7e0c0e0c /scripts/myhash.pm | |
parent | 71a5323ca0e92000baaa4c276c3a6e2e734a607e (diff) | |
download | vdr-plugin-muggle-e287c9b102fe10877f19f7b3c3e10c62209adbce.tar.gz vdr-plugin-muggle-e287c9b102fe10877f19f7b3c3e10c62209adbce.tar.bz2 |
Removed GiantDisc scripts.
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/trunk/muggle-plugin@125 e10066b5-e1e2-0310-b819-94efdf66514b
Diffstat (limited to 'scripts/myhash.pm')
-rwxr-xr-x | scripts/myhash.pm | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/scripts/myhash.pm b/scripts/myhash.pm deleted file mode 100755 index 5d8f1bd..0000000 --- a/scripts/myhash.pm +++ /dev/null @@ -1,29 +0,0 @@ -package myhash; - - -################################################## -# -# GiantDisc mp3 Jukebox -# -# © 2000, Rolf Brugger -# -################################################## - -#use lib '/usr/local/bin'; -#BEGIN{;} -#END{;} - - -############################################################ -### -sub addvaltohash{ # gets a current hashval and a new elment - # returns new hashval - my ($hashval,$newelement) = @_; - - return (($hashval << 5) ^ ($hashval >> 27)) ^ $newelement; - # (^ is bitwise EXOR) -} - - -1; -# |