go-mtree/vis_c.go

12 lines
174 B
Go
Raw Normal View History

// +build cgo,!govis
package mtree
import (
"github.com/vbatts/go-mtree/cvis"
)
func vis(src string, flags VisFlag) (string, error) {
return cvis.Vis(src, int(flags))
}