1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-30 00:00:11 +01:00
VILLASnode/lib/nodes/go/helper.go

13 lines
117 B
Go

package main
import (
"C"
)
func errorToInt(e error) C.int {
if e == nil {
return 0
} else {
return -1
}
}