return (value);
}
+int
+canLrzip(void)
+{
+ static int tested = 0, value = 0;
+ if (!tested) {
+ tested = 1;
+ if (systemf("lrzip -V %s", redirectArgs) == 0)
+ value = 1;
+ }
+ return (value);
+}
+
/*
* Can this filesystem handle nodump flags.
*/
/* Return true if this platform can run the "gunzip" program. */
int canGunzip(void);
+/* Return true if this platform can run the "lrzip" program. */
+int canLrzip(void);
+
/* Return true if this filesystem can handle nodump flags. */
int canNodump(void);