1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-06-27 16:36:00 +00:00
miniflux-v2/vendor/golang.org/x/sys/unix/dirent.go

18 lines
624 B
Go
Raw Normal View History

2017-11-19 21:10:04 -08:00
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
2018-12-09 17:59:39 -08:00
// +build aix darwin dragonfly freebsd linux nacl netbsd openbsd solaris
2017-11-19 21:10:04 -08:00
package unix
2018-07-06 21:18:14 -07:00
import "syscall"
2017-11-19 21:10:04 -08:00
// ParseDirent parses up to max directory entries in buf,
// appending the names to names. It returns the number of
// bytes consumed from buf, the number of entries added
// to names, and the new names slice.
func ParseDirent(buf []byte, max int, names []string) (consumed int, count int, newnames []string) {
2018-07-06 21:18:14 -07:00
return syscall.ParseDirent(buf, max, names)
2017-11-19 21:10:04 -08:00
}