aboutsummaryrefslogtreecommitdiff
path: root/compface.c
blob: 8d2cda8dc951f3e90882968478e3ef9c37fa9b13 (plain)
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
32
33
34
35
/*
 *  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

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include "compface.h"

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