Added tests to the state package, and reworked the code around that
This commit is contained in:
parent
e7456142a9
commit
bcfaffac24
11 changed files with 407 additions and 120 deletions
11
utils/clen.go
Normal file
11
utils/clen.go
Normal file
|
@ -0,0 +1,11 @@
|
|||
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)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue