| 303 | } |
| 304 | |
| 305 | static ucvector ucvector_init(unsigned char* buffer, size_t size) { |
| 306 | ucvector v; |
| 307 | v.data = buffer; |
| 308 | v.allocsize = v.size = size; |
| 309 | return v; |
| 310 | } |
| 311 | |
| 312 | /* ////////////////////////////////////////////////////////////////////////// */ |
| 313 |
no outgoing calls
no test coverage detected