shithub: npe

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