This file is indexed.

/usr/include/irssi/src/fe-common/core/completion.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
#ifndef __COMPLETION_H
#define __COMPLETION_H

#include "window-items.h"

/* automatic word completion - called when space/enter is pressed */
char *auto_word_complete(const char *line, int *pos);
/* manual word completion - called when TAB is pressed. if erase is TRUE,
   the word is removed from completion list entirely (if possible) and
   next completion is used */
char *word_complete(WINDOW_REC *window, const char *line, int *pos, int erase, int backward);

GList *filename_complete(const char *path, const char *default_path);

void completion_init(void);
void completion_deinit(void);

#endif