valgrind: do leak checking, and exit with code 1 on error (not 0)
[gnulib/ericb.git] / lib / hash-triple.h
blob51863c9dffc6f3bf7599e1b77155b1a26ab9de43
1 #ifndef HASH_TRIPLE_H
2 #define HASH_TRIPLE_H
4 #include <sys/types.h>
5 #include <sys/stat.h>
6 #include <stdbool.h>
8 /* Describe a just-created or just-renamed destination file. */
9 struct F_triple
11 char *name;
12 ino_t st_ino;
13 dev_t st_dev;
16 extern size_t triple_hash (void const *x, size_t table_size);
17 extern size_t triple_hash_no_name (void const *x, size_t table_size);
18 extern bool triple_compare (void const *x, void const *y);
19 extern bool triple_compare_ino_str (void const *x, void const *y);
20 extern void triple_free (void *x);
22 #endif