File: cmp.h

package info (click to toggle)
bible-kjv 4.41
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 4,760 kB
  • sloc: ansic: 3,589; makefile: 336; sh: 238; perl: 37
file content (15 lines) | stat: -rw-r--r-- 352 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* $Id: cmp.h,v 2.3 2005/01/22 18:47:45 matthew Exp $*/
#ifndef __CMP_H__
#define __CMP_H__

#ifdef NO_UCHAR
 typedef char   char_type;
#else
 typedef        unsigned char   char_type;
#endif /* UCHAR */

void cmp_init(void);
int cmp_decompress(char_type *inb, char_type  *outb, int insize );
int cmp_checkheader(char_type *inb);

#endif /*__CMP_H__*/