This file is indexed.

/usr/include/bibutils/bibl.h is in libbibutils-dev 4.12-5.

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
/*
 * bibl.h
 *
 * Copyright (c) Chris Putnam 2005-10
 *
 */
#ifndef BIBL_H
#define BIBL_H

#include <stdio.h>
#include "newstr.h"
#include "fields.h"
#include "reftypes.h"

typedef struct {
	long nrefs;
	long maxrefs;
	fields **ref;
} bibl;

extern void bibl_init( bibl *b );
extern void bibl_addref( bibl *b, fields *ref );
extern void bibl_free( bibl *b );
extern void bibl_copy( bibl *bout, bibl *bin );

#endif