blob: eae68c5210abc936c27119426ff33b5713dde819 (
plain)
1
2
3
4
5
6
7
8
9
|
/* For created inodes, a pointer in the search structure to this
character identifies the inode as being new. */
extern char new_file;
void hash_init PARAMS ((unsigned int modulus, unsigned int entry_tab_size));
void forget_all PARAMS ((void));
char *hash_insert PARAMS ((ino_t ino, dev_t dev, const char *node));
char *remember_copied PARAMS ((const char *node, ino_t ino, dev_t dev));
int remember_created PARAMS ((const char *path));
|