blob: a5a159e94d4169417d1220042953174a9bf39b06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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)
__attribute__((nonnull(2, 3)));
extern bool seen_file (Hash_table const *ht, char const *file,
struct stat const *stats);
|