reclenFromNamlen.go 147 B

123456789
  1. // +build dragonfly
  2. package godirwalk
  3. import "syscall"
  4. func reclen(de *syscall.Dirent) uint64 {
  5. return (16 + uint64(de.Namlen) + 1 + 7) &^ 7
  6. }