This file is indexed.

/usr/include/qsopt_ex/readline_mpf.h is in libqsopt-ex-dev 2.5.10.3-1+b1.

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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/* WARNING! This file was autogenerated from template */
/****************************************************************************/
/*                                                                          */
/*  This file is part of QSopt_ex.                                          */
/*                                                                          */
/*  (c) Copyright 2006 by David Applegate, William Cook, Sanjeeb Dash,      */
/*  and Daniel Espinoza                                                     */
/*                                                                          */
/*  Sanjeeb Dash ownership of copyright in QSopt_ex is derived from his     */
/*  copyright in QSopt.                                                     */
/*                                                                          */
/*  This code may be used under the terms of the GNU General Public License */
/*  (Version 2.1 or later) as published by the Free Software Foundation.    */
/*                                                                          */
/*  Alternatively, use is granted for research purposes only.               */
/*                                                                          */
/*  It is your choice of which of these two licenses you are operating      */
/*  under.                                                                  */
/*                                                                          */
/*  We make no guarantees about the correctness or usefulness of this code. */
/*                                                                          */
/****************************************************************************/

/* RCSINFO $Id: rdline.h,v 1.2 2003/11/05 16:57:39 meven Exp $ */
#ifndef mpf_LINE_READER_FILE_H
#define mpf_LINE_READER_FILE_H

#include "qsopt_mpf.h"
#include "format_mpf.h"

/* #ifdef _WINDOWS */
typedef char *(
	*mpf_qsread_line_fct) (
	char *s,
	int size,
	void *src);

typedef struct mpf_qsline_reader
{
	mpf_qsread_line_fct read_line_fct;
	void *data_src;
	struct mpf_qserror_collector *error_collector;
}
mpf_qsline_reader;

mpf_qsline_reader *mpf_ILLline_reader_new (
	mpf_qsread_line_fct fct,
	void *data_src);
void mpf_ILLline_reader_free (
	mpf_qsline_reader * reader);

#define mpf_ILLline_reader_get(s, size, reader)  \
	(reader)->read_line_fct(s, size, (reader)->data_src)
									 /* used by parsers to retrieve next input line */
/* #else  
 *
 * typedef FILE mpf_qsline_reader; 
 *
 * #define mpf_ILLline_reader_new(fct, data) ((FILE*) (data)) 
 * #define mpf_ILLline_reader_free(reader)  
 * #define mpf_ILLline_reader_get(s, size, reader) fgets(s,size,reader) 
 * #endif 
 */

#endif