9 lines
231 B
Go
9 lines
231 B
Go
/*
|
|
Package cpio implements access to CPIO archives. Currently, only the SVR4 (New
|
|
ASCII) format is supported, both with and without checksums.
|
|
|
|
References:
|
|
https://www.freebsd.org/cgi/man.cgi?query=cpio&sektion=5
|
|
*/
|
|
package cpio
|