File: compface.c

package info (click to toggle)
libcompface 1989.11.11-16
  • links: PTS
  • area: main
  • in suites: slink
  • size: 192 kB
  • ctags: 156
  • sloc: ansic: 1,514; makefile: 165; sh: 18
file content (31 lines) | stat: -rw-r--r-- 686 bytes parent folder | download | duplicates (9)
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
28
29
30
31
/*
 *  Compface - 48x48x1 image compression and decompression
 *
 *  Copyright (c) James Ashton - Sydney University - June 1990.
 *
 *  Written 11th November 1989.
 *
 *  Permission is given to distribute these sources, as long as the
 *  copyright messages are not removed, and no monies are exchanged. 
 *
 *  No responsibility is taken for any errors on inaccuracies inherent
 *  either to the comments or the code of this program, but if reported
 *  to me, then an attempt will be made to fix them.
 */

#define MAIN

#include "compface.h"

int
compface(fbuf)
char *fbuf;
{
	if (!(status = setjmp(comp_env)))
	{
		ReadFace(fbuf);
		GenFace();
		CompAll(fbuf);
	}
	return status;
}