mirror of
https://github.com/asticode/go-astikit.git
synced 2025-12-24 11:50:53 +08:00
9 lines
86 B
Go
9 lines
86 B
Go
package astikit
|
|
|
|
func BoolToUInt32(b bool) uint32 {
|
|
if b {
|
|
return 1
|
|
}
|
|
return 0
|
|
}
|