shithub: npe

ref: 8400240efda16e4261a17eac0f5b719701b16cd8
dir: /libnpe/fts_open.c/

View raw version
#include <fts.h>

FTS *
fts_open(char * const *path, int opt, int (*compar)(const FTSENT **, const FTSENT **))
{
	/* FIXME */
	USED(path, opt, compar);
	fprint(2, "FIXME fts_open not implemented\n");

	return nil;
}