File: xfts.h

package info (click to toggle)
coreutils 9.1-1
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 60,236 kB
  • sloc: ansic: 209,806; sh: 27,344; perl: 7,701; yacc: 1,851; makefile: 193; python: 47; sed: 16
file content (12 lines) | stat: -rw-r--r-- 374 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdbool.h>
#include "fts_.h"

FTS *
xfts_open (char * const *, int options,
           int (*) (const FTSENT **, const FTSENT **))
  _GL_ATTRIBUTE_MALLOC _GL_ATTRIBUTE_DEALLOC (fts_close, 1)
  _GL_ATTRIBUTE_NONNULL ((1)) _GL_ATTRIBUTE_RETURNS_NONNULL;

bool
cycle_warning_required (FTS const *fts, FTSENT const *ent)
  _GL_ATTRIBUTE_NONNULL () _GL_ATTRIBUTE_PURE;