aboutsummaryrefslogtreecommitdiff
path: root/bitwise.go
diff options
context:
space:
mode:
Diffstat (limited to 'bitwise.go')
-rw-r--r--bitwise.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/bitwise.go b/bitwise.go
index f8bce7a..689e667 100644
--- a/bitwise.go
+++ b/bitwise.go
@@ -3,6 +3,7 @@
package main
+// validateBitZeros checks if the first n bits of a byte slice are all zeros.
func validateBitZeros(bs []byte, n uint) bool {
q := n / 8
r := n % 8