Files
sing-box/service/usbip/shared_darwin.go
T
2026-06-09 10:42:25 +08:00

9 lines
173 B
Go

//go:build darwin && cgo
package usbip
func hex8(v uint8) string {
const hexdigits = "0123456789abcdef"
return string([]byte{hexdigits[(v>>4)&0xf], hexdigits[v&0xf]})
}