* Not used by Linux <= 2.6.37-rc4 and newer probably won't use it either, * but this kind of use case is still required to be supported by the API. */
| 69 | * but this kind of use case is still required to be supported by the API. |
| 70 | */ |
| 71 | static void test_cb_to_buf(void) |
| 72 | { |
| 73 | int in_used; |
| 74 | int ret; |
| 75 | ret = decompress(in, 0, &fill, NULL, out, &in_used, &error); |
| 76 | /* fwrite(out, 1, FIXME, stdout); */ |
| 77 | fprintf(stderr, "ret = %d; in_used = %d\n", ret, in_used); |
| 78 | } |
| 79 | |
| 80 | int main(int argc, char **argv) |
| 81 | { |