1 /* $OpenBSD: ftw.c,v 1.4 2004/07/07 16:05:23 millert Exp $ */
4 * Copyright (c) 2003, 2004 Todd C. Miller <Todd.Miller@courtesan.com>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18 * Sponsored in part by the Defense Advanced Research Projects
19 * Agency (DARPA) and Air Force Research Laboratory, Air Force
20 * Materiel Command, USAF, under agreement number F39502-99-1-0512.
22 * $FreeBSD: src/lib/libc/gen/ftw.c,v 1.4 2004/08/24 13:00:55 tjr Exp $
25 #include <sys/types.h>
33 ftw(const char *path
, int (*fn
)(const char *, const struct stat
*, int),
36 char * const paths
[2] = { (char *)path
, NULL
};
39 int error
= 0, fnflag
, sverrno
;
41 /* XXX - nfds is currently unused */
42 if (nfds
< 1 || nfds
> OPEN_MAX
) {
47 ftsp
= fts_open(paths
, FTS_LOGICAL
| FTS_COMFOLLOW
| FTS_NOCHDIR
, NULL
);
50 while ((cur
= fts_read(ftsp
)) != NULL
) {
51 switch (cur
->fts_info
) {
59 /* we only visit in preorder */
80 error
= fn(cur
->fts_path
, cur
->fts_statp
, fnflag
);
86 if (fts_close(ftsp
) != 0 && error
== 0)