(b bool)
| 347 | } |
| 348 | |
| 349 | func ucbool(b bool) C.uint { |
| 350 | if b { |
| 351 | return C.uint(1) |
| 352 | } |
| 353 | return C.uint(0) |
| 354 | } |
| 355 | |
| 356 | func setCallbackError(errorMessage **C.char, err error) C.int { |
| 357 | if err != nil { |
no outgoing calls
no test coverage detected
searching dependent graphs…