File: compress.c

package info (click to toggle)
reiser4progs 1.0.7-6
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 5,352 kB
  • ctags: 3,699
  • sloc: ansic: 33,483; sh: 8,489; makefile: 1,001
file content (27 lines) | stat: -rw-r--r-- 687 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* Copyright (C) 2001-2005 by Hans Reiser, licensing governed by
   reiser4progs/COPYING.

   compress.c -- reiser4 compression transform plugins.
   Plugins are needed for the fsck and for all  utilities when
   specifying them by the name with --override option. */

#ifdef HAVE_CONFIG_H
#  include <config.h>
#endif

#ifndef ENABLE_MINIMAL
#include "reiser4/plugin.h"

reiser4_plug_t lzo1_plug = {
	.id    = {COMPRESS_LZO1_ID, 0, COMPRESS_PLUG_TYPE},
	.label = "lzo1",
	.desc  = "lzo1 compression transform plugin.",
};

reiser4_plug_t gzip1_plug = {
	.id    = {COMPRESS_GZIP1_ID, 0, COMPRESS_PLUG_TYPE},
	.label = "gzip1",
	.desc  = "gzip1 compression transform plugin.",
};

#endif