This file is indexed.

/usr/include/irssi/src/core/rawlog.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
18
19
20
21
22
23
24
25
26
27
28
#ifndef __RAWLOG_H
#define __RAWLOG_H

struct _RAWLOG_REC {
	int logging;
	int handle;

        int nlines;
	GSList *lines;
};

RAWLOG_REC *rawlog_create(void);
void rawlog_destroy(RAWLOG_REC *rawlog);

void rawlog_input(RAWLOG_REC *rawlog, const char *str);
void rawlog_output(RAWLOG_REC *rawlog, const char *str);
void rawlog_redirect(RAWLOG_REC *rawlog, const char *str);

void rawlog_set_size(int lines);

void rawlog_open(RAWLOG_REC *rawlog, const char *fname);
void rawlog_close(RAWLOG_REC *rawlog);
void rawlog_save(RAWLOG_REC *rawlog, const char *fname);

void rawlog_init(void);
void rawlog_deinit(void);

#endif