This file is indexed.

/usr/include/bibutils/bibtexout.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
27
28
29
/*
 * bibtexout.h
 *
 * Copyright (c) Chris Putnam 2005-2010
 *
 */
#ifndef BIBTEXOUT_H
#define BIBTEXOUT_H

#include <stdio.h>
#include "fields.h"
#include "bibutils.h"

/* bibtexout output options */
#define BIBOUT_FINALCOMMA   (2)
#define BIBOUT_SINGLEDASH   (4)
#define BIBOUT_WHITESPACE   (8)
#define BIBOUT_BRACKETS    (16)
#define BIBOUT_UPPERCASE   (32)
#define BIBOUT_STRICTKEY   (64)
#define BIBOUT_SHORTTITLE (128)
#define BIBOUT_DROPKEY    (256)

extern void bibtexout_write( fields *info, FILE *fp, param *p, 
		unsigned long refnum );
extern void bibtexout_writeheader( FILE *outptr, param *p );
extern void bibtexout_initparams( param *p, const char *progname );

#endif