GetCgoCharArray returns a char array via cgo and the array's len and cap. This is only used for tests.
()
| 55 | // GetCgoCharArray returns a char array via cgo and the array's len and cap. |
| 56 | // This is only used for tests. |
| 57 | func GetCgoCharArray() (interface{}, int, int) { |
| 58 | return C.ca, len(C.ca), cap(C.ca) |
| 59 | } |
| 60 | |
| 61 | // GetCgoUnsignedCharArray returns an unsigned char array via cgo and the |
| 62 | // array's len and cap. This is only used for tests. |
no outgoing calls
searching dependent graphs…