func Atoi(s string) (i int) { cs := C.CString(s) i = int(C.bar(C.atoi(cs))) return }
func Atoi(s string) int { return int(C.atoi(C.CString(s))) }