shrink 0.5.3 发布,多种压缩算法的统一API

jopen 11年前

shrink库为多种压缩算法提供了一个单一的API。它使开发人员能够轻松地为现有代码库添加压缩和解压功能。它目前支持LZO,LZ77和LZMA。

        if (s_init(S_ALG_LZO, S_L_MID))                  errx(1, "s_init algorithm %d not supported", algo);            /* compress */          if (s_compress(source, destination, size, &comp_sz, NULL)) {                  errx(1, "s_compress failed");            /* decompress */          if (s_decompress(source, destination, comp_sz, &uncomp_sz, NULL))                  errx(1, "s_decompress failed");

发布说明: This release fixes the OpenBSD port Makefile for modern OpenBSD ports.