This file is indexed.

/usr/include/bitlbee/auth.h is in bitlbee-dev 3.5.1-1build1.

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
#ifndef __BITLBEE_AUTH_H__
#define __BITLBEE_AUTH_H__

#include "storage.h"

typedef struct {
	const char *name;
	storage_status_t (*check_pass)(const char *nick, const char *password);
} auth_backend_t;

GList *auth_init(const char *backend);
storage_status_t auth_check_pass(irc_t *irc, const char *nick, const char *password);
#endif