Marvin Preuss
d095180eb4
All checks were successful
continuous-integration/drone/push Build is passing
10 lines
314 B
Go
10 lines
314 B
Go
/*
|
|
Package cpio providers readers and writers for CPIO archives. Currently, only
|
|
the SVR4 (New ASCII) format is supported, both with and without checksums.
|
|
|
|
This package aims to be feel like Go's archive/tar package.
|
|
|
|
See the CPIO man page: https://www.freebsd.org/cgi/man.cgi?query=cpio&sektion=5
|
|
*/
|
|
package cpio
|