File: inoWithFileno.go

package info (click to toggle)
golang-github-karrick-godirwalk 1.15.3-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 248 kB
  • sloc: makefile: 3
file content (9 lines) | stat: -rw-r--r-- 157 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
// +build dragonfly freebsd openbsd netbsd

package godirwalk

import "syscall"

func inoFromDirent(de *syscall.Dirent) uint64 {
	return uint64(de.Fileno)
}