blob: 1a61eb5622a38b90cedd3f8a8e75bd30e1b710d9 (
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
36
|
/*
* 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.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#define MAIN
#include "compface_private.h"
int
uncompface(fbuf)
char *fbuf;
{
if (!(status = setjmp(comp_env)))
{
UnCompAll(fbuf);/* compress otherwise */
UnGenFace();
WriteFace(fbuf);
}
return status;
}
|