rm_/lib/xfts.h

13 lines
374 B
C
Raw Normal View History

2020-09-02 16:47:03 +08:00
#include <stdbool.h>
#include "fts_.h"
FTS *
xfts_open (char * const *, int options,
2022-07-28 14:16:50 +08:00
int (*) (const FTSENT **, const FTSENT **))
_GL_ATTRIBUTE_MALLOC _GL_ATTRIBUTE_DEALLOC (fts_close, 1)
_GL_ATTRIBUTE_NONNULL ((1)) _GL_ATTRIBUTE_RETURNS_NONNULL;
2020-09-02 16:47:03 +08:00
bool
cycle_warning_required (FTS const *fts, FTSENT const *ent)
2022-07-28 14:16:50 +08:00
_GL_ATTRIBUTE_NONNULL () _GL_ATTRIBUTE_PURE;