diff options
author | Laria Carolin Chabowski <laria@laria.me> | 2020-11-08 17:43:21 +0100 |
---|---|---|
committer | Laria Carolin Chabowski <laria@laria.me> | 2020-11-08 17:47:21 +0100 |
commit | 32b8f4ae4243bc915fe38e28dd991a28c09b4331 (patch) | |
tree | 91e670ed3609ba381dc2e8e26e66947d21f4f02f /ratatoeskr/sys | |
parent | 7b0ed66d6b972bfc88d7b9a1a0e1369f01084189 (diff) | |
download | ratatoeskr-cms-32b8f4ae4243bc915fe38e28dd991a28c09b4331.tar.gz ratatoeskr-cms-32b8f4ae4243bc915fe38e28dd991a28c09b4331.tar.bz2 ratatoeskr-cms-32b8f4ae4243bc915fe38e28dd991a28c09b4331.zip |
Remove intcmp()
Diffstat (limited to 'ratatoeskr/sys')
-rw-r--r-- | ratatoeskr/sys/utils.php | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/ratatoeskr/sys/utils.php b/ratatoeskr/sys/utils.php index 21d65f9..60f90a8 100644 --- a/ratatoeskr/sys/utils.php +++ b/ratatoeskr/sys/utils.php @@ -10,15 +10,6 @@ * See "ratatoeskr/licenses/ratatoeskr" for more information. */ - -/* - * Function: intcmp - * Compare integers (equavilent to strcmp) - */ -function intcmp($a, $b) -{ - return ($a == $b) ? 0 : (($a < $b) ? -1 : 1); -} /* * Function: delete_directory * Delete a directory and all of its content. |