shithub: npe

ref: 2d138bd7fae5a7e39397093fb1a4b2f6274acc0a
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;
}