File: compressed_loop.h

package info (click to toggle)
cloop 0.63.1-4
  • links: PTS
  • area: main
  • in suites: woody
  • size: 552 kB
  • ctags: 852
  • sloc: ansic: 6,358; makefile: 288; sh: 215
file content (13 lines) | stat: -rw-r--r-- 215 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _COMPRESSED_LOOP_H
#define _COMPRESSED_LOOP_H

#define CLOOP_HEADROOM 128

struct cloop_head
{
	char preamble[CLOOP_HEADROOM];
	u_int32_t block_size;
	u_int32_t num_blocks;
};

#endif /*_COMPRESSED_LOOP_H*/