uncompress file if it exists */
| 1793 | |
| 1794 | /* uncompress file if it exists */ |
| 1795 | void |
| 1796 | nh_uncompress(const char *filename UNUSED_if_not_COMPRESS) |
| 1797 | { |
| 1798 | #if defined(COMPRESS) || defined(ZLIB_COMP) |
| 1799 | docompress_file(filename, TRUE); |
| 1800 | #endif |
| 1801 | } |
| 1802 | |
| 1803 | #ifdef ZLIB_COMP /* RLC 09 Mar 1999: Support internal ZLIB */ |
| 1804 | staticfn boolean |
no test coverage detected