cat: Cat function is now public.

This commit is contained in:
k1574 2022-02-20 09:02:39 +05:00
parent 0395484a13
commit d3a7d7a0a8

View file

@ -11,7 +11,7 @@ var(
blockSize int
)
func cat(p string) error {
func Cat(p string) error {
f, e := os.Open(p)
if e != nil {
return e