diff options
author | Joe <rbo@gmx.us> | 2024-02-02 20:20:20 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2024-02-02 20:20:20 +0100 |
commit | e9e2f686737d9ff395af502f9aeee17548dfcb2c (patch) | |
tree | ed60b6c8f16aa4debebb76f478a1bd7329a14fa5 /src/c_defs.go | |
parent | stack (diff) | |
download | hardflip-e9e2f686737d9ff395af502f9aeee17548dfcb2c.tar.gz hardflip-e9e2f686737d9ff395af502f9aeee17548dfcb2c.tar.bz2 hardflip-e9e2f686737d9ff395af502f9aeee17548dfcb2c.tar.xz hardflip-e9e2f686737d9ff395af502f9aeee17548dfcb2c.tar.zst hardflip-e9e2f686737d9ff395af502f9aeee17548dfcb2c.zip |
func pointers yo
Diffstat (limited to '')
-rw-r--r-- | src/c_defs.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/c_defs.go b/src/c_defs.go index 2ec2346..68d2204 100644 --- a/src/c_defs.go +++ b/src/c_defs.go @@ -43,7 +43,7 @@ * POSSIBILITY OF SUCH DAMAGE. * * hardflip: src/c_defs.go - * Wed Jan 31 16:40:52 2024 + * Fri Feb 02 10:07:55 2024 * Joe * * constants @@ -91,6 +91,10 @@ const ( STYLE_BOT = 6 ) +const ( + PROTOCOL_MAX = 3 +) + var ( HOST_ICONS = [4]string{" ", " ", " ", " "} DIRS_ICONS = [2]string{" ", " "} |