aboutsummaryrefslogtreecommitdiffstats
path: root/src/c_utils.go
diff options
context:
space:
mode:
authorJoe <rbo@gmx.us>2024-05-20 20:20:20 +0200
committerJoe <rbo@gmx.us>2024-05-20 20:20:20 +0200
commiteb4e06455cc206f7457cb785050f9fbd720919c7 (patch)
treecb28889b472ae5b468eefb4ab7271a303740be1b /src/c_utils.go
parentcli opts letsgo (diff)
downloadhardflip-eb4e06455cc206f7457cb785050f9fbd720919c7.tar.gz
hardflip-eb4e06455cc206f7457cb785050f9fbd720919c7.tar.bz2
hardflip-eb4e06455cc206f7457cb785050f9fbd720919c7.tar.xz
hardflip-eb4e06455cc206f7457cb785050f9fbd720919c7.tar.zst
hardflip-eb4e06455cc206f7457cb785050f9fbd720919c7.zip
even better
Diffstat (limited to 'src/c_utils.go')
-rw-r--r--src/c_utils.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/c_utils.go b/src/c_utils.go
index af80772..8c79ed3 100644
--- a/src/c_utils.go
+++ b/src/c_utils.go
@@ -258,3 +258,16 @@ func c_not_an_arg(arg string) {
fmt.Println("hf: Unknown argument " + arg)
os.Exit(1)
}
+
+func c_cli_opts(arg string) {
+ switch arg {
+ case "-v",
+ "--version":
+ c_print_version()
+ case "-h",
+ "--help":
+ c_print_help()
+ default:
+ c_not_an_arg(os.Args[1])
+ }
+}