This file is indexed.

/usr/include/irssi/src/irc/core/irc-queries.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
#ifndef __IRC_QUERIES_H
#define __IRC_QUERIES_H

#include "chat-protocols.h"
#include "queries.h"

/* Returns IRC_QUERY_REC if it's IRC query, NULL if it isn't. */
#define IRC_QUERY(query) \
	PROTO_CHECK_CAST(QUERY(query), QUERY_REC, chat_type, "IRC")

#define IS_IRC_QUERY(query) \
	(IRC_QUERY(query) ? TRUE : FALSE)

void irc_queries_init(void);
void irc_queries_deinit(void);

QUERY_REC *irc_query_find(IRC_SERVER_REC *server, const char *nick);

QUERY_REC *irc_query_create(const char *server_tag,
			    const char *nick, int automatic);

#endif