Lines Matching defs:extension
115 DISPLAY( " -d : decompression (default for %s extension)\n", LZ4_EXTENSION);
185 DISPLAY( " > if input filename has no '%s' extension : error \n", LZ4_EXTENSION);
251 @return : a non-zero value if exeName matches test, excluding the extension
298 * auto-determine operation mode, based on input filename extension
299 * @return `om_decompress` if input filename has .lz4 extension and `om_compress` otherwise.
331 const char extension[] = LZ4_EXTENSION;
689 if (mode == om_auto) { /* auto-determine compression or decompression, based on file extension */
702 if (mode == om_decompress) {/* decompress to file (automatic output name only works if input filename has correct format extension) */
710 while ((outl >= inl-4) && (input_filename[outl] == extension[outl-inl+4])) dynNameSpace[outl--]=0;
739 /* Auto-determine compression or decompression, based on file extension */