ftw.c\legacy\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/legacy/ftw.c
blob: e757fc6f0ce20b5b8ca0aedb65a45085c8005f8a (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <ftw.h>
int ftw(const char *path, int (*fn)(const char *, const struct stat *, int), int fd_limit)
{
	/* The following cast assumes that calling a function with one
	 * argument more than it needs behaves as expected. This is
	 * actually undefined, but works on all real-world machines. */
	return nftw(path, (int (*)())fn, fd_limit, FTW_PHYS);
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月11日 09:31:09 +0000

AltStyle によって変換されたページ (->オリジナル) /