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/go/pkg/errors/helper.go

26 lines
293 B
Go

package errors
import (
"C"
)
import "fmt"
var (
ErrEndOfFile = fmt.Errorf("end-of-file")
)
func ErrorToInt(e error) int {
if e == nil {
return 0
} else {
return -1
}
}
func IntToError(ret int) error {
if ret == 0 {
return nil
} else {
return fmt.Errorf("ret=%d", ret)
}
}