This file is indexed.

/usr/include/irssi/src/fe-text/statusbar-item.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
17
#ifndef IRSSI_STATUSBAR_ITEM_H
#define IRSSI_STATUSBAR_ITEM_H

struct SBAR_ITEM_REC;

typedef void (*STATUSBAR_FUNC) (struct SBAR_ITEM_REC *item, int get_size_only);

void statusbar_item_register(const char *name, const char *value,
			     STATUSBAR_FUNC func);
void statusbar_item_unregister(const char *name);
void statusbar_item_set_size(struct SBAR_ITEM_REC *item, int min_size, int max_size);
void statusbar_item_default_handler(struct SBAR_ITEM_REC *item, int get_size_only,
				    const char *str, const char *data,
				    int escape_vars);
void statusbar_items_redraw(const char *name);

#endif