This file is indexed.

/usr/include/irssi/src/irc/core/irc-masks.h is in irssi-dev 1.0.5-1ubuntu4.

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
#ifndef __IRC_MASKS_H
#define __IRC_MASKS_H

#include "masks.h"

#define IRC_MASK_NICK   0x01
#define IRC_MASK_USER   0x02
#define IRC_MASK_HOST   0x04
#define IRC_MASK_DOMAIN 0x08

char *irc_get_mask(const char *nick, const char *address, int flags);

#endif