home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / SRC / TO_PORT / compfacelib.lzh / uncompface.c < prev   
C/C++ Source or Header  |  1992-04-30  |  713b  |  31 lines

  1. /*
  2.  *  Compface - 48x48x1 image compression and decompression
  3.  *
  4.  *  Copyright (c) James Ashton - Sydney University - June 1990.
  5.  *
  6.  *  Written 11th November 1989.
  7.  *
  8.  *  Permission is given to distribute these sources, as long as the
  9.  *  copyright messages are not removed, and no monies are exchanged. 
  10.  *
  11.  *  No responsibility is taken for any errors on inaccuracies inherent
  12.  *  either to the comments or the code of this program, but if reported
  13.  *  to me, then an attempt will be made to fix them.
  14.  */
  15.  
  16. #define MAIN
  17.  
  18. #include "compface.h"
  19.  
  20. uncompface(fbuf)
  21. char *fbuf;
  22. {
  23.     if (!(status = setjmp(comp_env)))
  24.     {
  25.         UnCompAll(fbuf);/* compress otherwise */
  26.         UnGenFace();
  27.         WriteFace(fbuf);
  28.     }
  29.     return status;
  30. }
  31.