| 931 | ********************************/ |
| 932 | |
| 933 | LZ4_stream_t* LZ4_createStream(void) |
| 934 | { |
| 935 | LZ4_stream_t* lz4s = (LZ4_stream_t*)ALLOCATOR(8, LZ4_STREAMSIZE_U64); |
| 936 | LZ4_STATIC_ASSERT(LZ4_STREAMSIZE >= sizeof(LZ4_stream_t_internal)); /* A compilation error here means LZ4_STREAMSIZE is not large enough */ |
| 937 | LZ4_resetStream(lz4s); |
| 938 | return lz4s; |
| 939 | } |
| 940 | |
| 941 | void LZ4_resetStream (LZ4_stream_t* LZ4_stream) |
| 942 | { |
no test coverage detected