[go: up one dir, main page]

File: file-set.h

package info (click to toggle)
coreutils 8.30-3
  • links: PTS
  • area: main
  • in suites: buster
  • size: 55,016 kB
  • sloc: ansic: 184,556; sh: 24,897; perl: 7,361; yacc: 1,843; makefile: 194; python: 47; sed: 16
file content (15 lines) | stat: -rw-r--r-- 435 bytes parent folder | download | duplicates (28)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <sys/types.h>
#include <sys/stat.h>
#include <stdbool.h>

#include "hash.h"

extern void record_file (Hash_table *ht, char const *file,
                         struct stat const *stats)
#if defined __GNUC__ && ((__GNUC__ == 3 && __GNUC_MINOR__ >= 3) || __GNUC__ > 3)
  __attribute__ ((nonnull (2, 3)))
#endif
;

extern bool seen_file (Hash_table const *ht, char const *file,
                       struct stat const *stats);