aboutsummaryrefslogtreecommitdiff
path: root/utils/clen.go
diff options
context:
space:
mode:
authorJulien Dessaux2021-04-23 16:51:22 +0200
committerJulien Dessaux2021-04-23 16:51:22 +0200
commit38d9c881b3b5ece91f428c87f0b7bb9efb3e88a8 (patch)
treed3f7167fae6388f4db35a63e660d1816c9c2943e /utils/clen.go
parentFixed wrongfully hardcoded path in tests. (diff)
downloadbareos-zabbix-check-38d9c881b3b5ece91f428c87f0b7bb9efb3e88a8.tar.gz
bareos-zabbix-check-38d9c881b3b5ece91f428c87f0b7bb9efb3e88a8.tar.bz2
bareos-zabbix-check-38d9c881b3b5ece91f428c87f0b7bb9efb3e88a8.zip
Updated for go 1.16 modules1.2
Diffstat (limited to 'utils/clen.go')
-rw-r--r--utils/clen.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/utils/clen.go b/utils/clen.go
deleted file mode 100644
index 17d1c4b..0000000
--- a/utils/clen.go
+++ /dev/null
@@ -1,11 +0,0 @@
-package utils
-
-// Clen returns the length of a null terminated string like in C
-func Clen(n []byte) int {
- for i := 0; i < len(n); i++ {
- if n[i] == 0 {
- return i
- }
- }
- return len(n)
-}