JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
renamed basics.php to misc.php
[wfpl.git] / basics.php
diff --git a/basics.php b/basics.php
deleted file mode 100644 (file)
index 4e1da44..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-<?php
-
-function read_whole_file($name) {
-       $fd = fopen($name, 'r');
-       if($fd === false) {
-               die("Failed to read file: '$name'");
-       }
-       $file_data = fread($fd, filesize($name));
-       fclose($fd);
-       return $file_data;
-}
-
-function unix_newlines($str) {
-       $str = str_replace("\r\n", "\n", $str);
-       return str_replace("\r", "\n", $str);
-}
-
-# return current year (all 4 digits)
-function this_year() {
-       return strftime('%Y');
-}
-
-# return the number of the current month (1..12)
-function this_month() {
-       return strftime('%m');
-}
-
-?>