This file is indexed.

/usr/include/dovecot/unlink-directory.h is in dovecot-dev 1:2.2.9-1ubuntu2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
#ifndef UNLINK_DIRECTORY_H
#define UNLINK_DIRECTORY_H

enum unlink_directory_flags {
	/* After unlinking all files, rmdir() the directory itself */
	UNLINK_DIRECTORY_FLAG_RMDIR		= 0x01,
	/* Don't unlink any files beginning with "." */
	UNLINK_DIRECTORY_FLAG_SKIP_DOTFILES	= 0x02,
	/* Don't recurse into subdirectories */
	UNLINK_DIRECTORY_FLAG_FILES_ONLY	= 0x04
};

/* Unlink directory and/or everything under it.
   Returns 0 if successful, -1 if error. */
int unlink_directory(const char *dir, enum unlink_directory_flags flags);

#endif