You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
274 B
Go
22 lines
274 B
Go
6 years ago
|
package ansiterm
|
||
|
|
||
|
import (
|
||
|
"strconv"
|
||
|
)
|
||
|
|
||
|
func sliceContains(bytes []byte, b byte) bool {
|
||
|
for _, v := range bytes {
|
||
|
if v == b {
|
||
|
return true
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
func convertBytesToInteger(bytes []byte) int {
|
||
|
s := string(bytes)
|
||
|
i, _ := strconv.Atoi(s)
|
||
|
return i
|
||
|
}
|