Files
go-ts3/util.go

10 lines
99 B
Go

package ts3
func boolToInt(boolean bool) (integer int) {
if boolean {
return 1
}
return 0
}