Shared compression code. More...
#include "config.h"#include <stdio.h>#include "mutt/lib.h"#include "config/lib.h"#include "lib.h"
Include dependency graph for compress.c:Go to the source code of this file.
Functions | |
| struct Slist * | compress_list (void) |
| Get a list of compression backend names. | |
| const struct ComprOps * | compress_get_ops (const char *compr) |
| Get the API functions for a compress backend. | |
Variables | |
| static const struct ComprOps * | CompressOps [] |
| Backend implementations. | |
Shared compression code.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
Definition in file compress.c.
| struct Slist * compress_list | ( | void | ) |
Get a list of compression backend names.
| ptr | List of names |
Definition at line 59 of file compress.c.
Here is the call graph for this function:
Here is the caller graph for this function:| const struct ComprOps * compress_get_ops | ( | const char * | compr | ) |
Get the API functions for a compress backend.
| compr | Name of the backend |
| ptr | Set of function pointers |
Definition at line 78 of file compress.c.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Backend implementations.
Definition at line 40 of file compress.c.