GetCgoUnsignedCharArray returns an unsigned char array via cgo and the array's len and cap. This is only used for tests.
()
| 61 | // GetCgoUnsignedCharArray returns an unsigned char array via cgo and the |
| 62 | // array's len and cap. This is only used for tests. |
| 63 | func GetCgoUnsignedCharArray() (interface{}, int, int) { |
| 64 | return C.uca, len(C.uca), cap(C.uca) |
| 65 | } |
| 66 | |
| 67 | // GetCgoSignedCharArray returns a signed char array via cgo and the array's len |
| 68 | // and cap. This is only used for tests. |
no outgoing calls
searching dependent graphs…