gitlab.com/evatix-go/core@v1.3.55/chmodhelper/chmodins/expandCharsRwx.go (about) 1 package chmodins 2 3 // expandCharsRwx Expands to 'r', 'w', 'x' 4 func expandCharsRwx(rwx string) (r, w, x byte) { 5 r = rwx[0] 6 w = rwx[1] 7 x = rwx[2] 8 9 return r, w, x 10 }