| 282 | } |
| 283 | |
| 284 | static ucvector ucvector_init(unsigned char* buffer, size_t size) { |
| 285 | ucvector v; |
| 286 | v.data = buffer; |
| 287 | v.allocsize = v.size = size; |
| 288 | return v; |
| 289 | } |
| 290 | |
| 291 | /* ////////////////////////////////////////////////////////////////////////// */ |
| 292 |
no outgoing calls
no test coverage detected