1
0
Fork 0
mirror of https://github.com/vbatts/go-mtree.git synced 2024-11-15 05:08:40 +00:00
go-mtree/vis.go

15 lines
293 B
Go
Raw Normal View History

package mtree
// #include "vis.h"
import "C"
import "fmt"
func Vis(str string) (string, error) {
dst := new(C.char)
ret := C.strvis(dst, C.CString(str), C.VIS_WHITE|C.VIS_OCTAL|C.VIS_GLOB)
if ret == 0 {
return "", fmt.Errorf("failed to encode string")
}
return C.GoString(dst), nil
}