GetCgoSignedCharArray returns a signed char array via cgo and the array's len and cap. This is only used for tests.
()
| 67 | // GetCgoSignedCharArray returns a signed char array via cgo and the array's len |
| 68 | // and cap. This is only used for tests. |
| 69 | func GetCgoSignedCharArray() (interface{}, int, int) { |
| 70 | return C.sca, len(C.sca), cap(C.sca) |
| 71 | } |
| 72 | |
| 73 | // GetCgoUint8tArray returns a uint8_t array via cgo and the array's len and |
| 74 | // cap. This is only used for tests. |
no outgoing calls
searching dependent graphs…