GetCgoTypedefedUnsignedCharArray returns a typedefed unsigned char array via cgo and the array's len and cap. This is only used for tests.
()
| 79 | // GetCgoTypedefedUnsignedCharArray returns a typedefed unsigned char array via |
| 80 | // cgo and the array's len and cap. This is only used for tests. |
| 81 | func GetCgoTypedefedUnsignedCharArray() (interface{}, int, int) { |
| 82 | return C.tuca, len(C.tuca), cap(C.tuca) |
| 83 | } |
no outgoing calls
searching dependent graphs…