This file is indexed.

/usr/include/irssi/src/fe-common/core/fe-channels.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
14
15
16
#ifndef __FE_CHANNELS_H
#define __FE_CHANNELS_H

#define CHANNEL_NICKLIST_FLAG_OPS       0x01
#define CHANNEL_NICKLIST_FLAG_HALFOPS   0x02
#define CHANNEL_NICKLIST_FLAG_VOICES    0x04
#define CHANNEL_NICKLIST_FLAG_NORMAL    0x08
#define CHANNEL_NICKLIST_FLAG_ALL       0x0f
#define CHANNEL_NICKLIST_FLAG_COUNT     0x10

void fe_channels_nicklist(CHANNEL_REC *channel, int flags);

void fe_channels_init(void);
void fe_channels_deinit(void);

#endif