compress file */
| 1784 | |
| 1785 | /* compress file */ |
| 1786 | void |
| 1787 | nh_compress(const char *filename UNUSED_if_not_COMPRESS) |
| 1788 | { |
| 1789 | #if defined(COMPRESS) || defined(ZLIB_COMP) |
| 1790 | docompress_file(filename, FALSE); |
| 1791 | #endif |
| 1792 | } |
| 1793 | |
| 1794 | /* uncompress file if it exists */ |
| 1795 | void |
no test coverage detected