[go: up one dir, main page]

File: comp.h

package info (click to toggle)
sabre 0.2.3-3
  • links: PTS
  • area: main
  • in suites: slink
  • size: 4,876 kB
  • ctags: 5,106
  • sloc: cpp: 25,581; ansic: 7,439; sh: 2,063; makefile: 92
file content (17 lines) | stat: -rw-r--r-- 549 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*!!*****************************************************!!
  !! copyright (c) 1995 by Dan Hammer and Robert Lippman !!
  !!*****************************************************!!*/
#ifndef COMP_H_RCSID
#define COMP_H_RCSID "$Id: comp.h,v 1.1 1997/11/30 00:58:28 dan Exp $"
/* Compress the source buffer src into the target buffer tgt. */
#ifdef __cplusplus
extern "C" {
#endif
unsigned long memcompress (char *tgt, 
			   unsigned long tgtsize, 
			   char *src, 
			   unsigned long srcsize);
#ifdef __cplusplus
}
#endif
#endif /* COMP_H_RCSID */