mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-24 10:35:26 +00:00
11 lines
310 B
C
11 lines
310 B
C
#pragma once
|
|
|
|
#include <stream.h>
|
|
|
|
#include "format.h"
|
|
|
|
filter_stream *get_encoder(format_t type, FILE *fp = nullptr);
|
|
filter_stream *get_decoder(format_t type, FILE *fp = nullptr);
|
|
void compress(const char *method, const char *infile, const char *outfile);
|
|
void decompress(char *infile, const char *outfile);
|