blob: 90664c467917eb60bda06b1c4ad9680a0d110a84 (
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_private.h"
int
compface(fbuf)
char *fbuf;
{
if (!(status = setjmp(comp_env)))
{
ReadFace(fbuf);
GenFace();
CompAll(fbuf);
}
return status;
}
|