]>
git.saurik.com Git - apple/libc.git/blob - gen/ftw.c
98bb8e8fd00c44e09a2f63ca386ad0c593c24908
1 /* $OpenBSD: ftw.c,v 1.2 2003/07/21 21:15:32 millert Exp $ */
4 * Copyright (c) 2003 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.
23 #if defined(LIBC_SCCS) && !defined(lint)
24 static const char rcsid
[] = "$OpenBSD: ftw.c,v 1.2 2003/07/21 21:15:32 millert Exp $";
25 #endif /* LIBC_SCCS and not lint */
27 #include <sys/types.h>
35 ftw(const char *path
, int (*fn
)(const char *, const struct stat
*, int),
41 int fnflag
, error
, sverrno
;
43 /* XXX - nfds is currently unused */
44 if (nfds
< 1 || nfds
> OPEN_MAX
) {
51 ftsp
= fts_open((char * const *)paths
, FTS_COMFOLLOW
| FTS_NOCHDIR
,
56 while ((cur
= fts_read(ftsp
)) != NULL
) {
57 switch (cur
->fts_info
) {
65 /* we only visit in preorder */
86 error
= fn(cur
->fts_path
, cur
->fts_statp
, fnflag
);
92 (void) fts_close(ftsp
);