home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / games / tinymud2.zip / DECOMPRE.C < prev    next >
C/C++ Source or Header  |  1990-09-02  |  164b  |  14 lines

  1. #include <stdio.h>
  2.  
  3. const char *uncompress(const char *s);
  4.  
  5. int main()
  6. {
  7.     char buf[16384];
  8.  
  9.     while(gets(buf)) {
  10.     puts(uncompress(buf));
  11.     }
  12.     return 0;
  13. }
  14.