blob: f903f48042900936bcc591ed3c5431a7da10da00 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <stdbool.h>
#include "fts_.h"
FTS *
xfts_open (char * const *, int options,
int (*) (const FTSENT **, const FTSENT **));
bool
cycle_warning_required (FTS const *fts, FTSENT const *ent)
_GL_ATTRIBUTE_PURE;
|