aboutsummaryrefslogtreecommitdiffstats
path: root/src/c_go2work.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/c_go2work.go')
-rw-r--r--src/c_go2work.go20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/c_go2work.go b/src/c_go2work.go
index 3f4c38a..89fb91d 100644
--- a/src/c_go2work.go
+++ b/src/c_go2work.go
@@ -48,7 +48,6 @@
package main
import (
- "fmt"
"log"
"os"
"time"
@@ -101,27 +100,8 @@ func main() {
}
}
-func print_help() {
- fmt.Println("help")
-}
-
-func print_real_help() {
- fmt.Println("send help")
-}
-
-func print_version() {
- fmt.Println(PROGNAME, VERSION)
-}
-
-func print_time(t []string) {
- fmt.Print("\rTime is: ", t[HOURS], ":", t[MINS], ":", t[SECS])
-}
-
func get_time() []string {
now := time.Now()
t := strings.Split(now.Format("15:04:05"), ":")
return t
}
-
-// func left_to_sleep(curr_h) {
-// }