This file is indexed.

/usr/include/fptools.h is in libuu-dev 0.5.20-3.4.

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
/*
 * fptools.c, some helper functions for getcgi.c and uu(en|de)view
 *
 * Distributed under the terms of the GNU General Public License.
 * Use and be happy.
 */

/*
 * Some handy, nonstandard functions. Note that the original may
 * be both faster and better. ``better'', if your compiler allows
 * cleaner use of such functions by proper use of ``const''.
 *
 * $Id: fptools.h,v 1.4 2001/06/06 18:21:47 fp Exp $
 */

#ifndef __FPTOOLS_H__
#define __FPTOOLS_H__

#ifndef _ANSI_ARGS_
#ifdef PROTOTYPES
#define _ANSI_ARGS_(c)	c
#else
#define _ANSI_ARGS_(c)	()
#endif
#endif

#ifndef TOOLEXPORT
#define TOOLEXPORT
#endif

#ifdef __cplusplus
extern "C" {
#endif

void	TOOLEXPORT	_FP_free	_ANSI_ARGS_((void *));
char *	TOOLEXPORT	_FP_strdup	_ANSI_ARGS_((char *));
char *	TOOLEXPORT	_FP_strncpy	_ANSI_ARGS_((char *, char *, int));
void *	TOOLEXPORT	_FP_memdup	_ANSI_ARGS_((void *, int));
int 	TOOLEXPORT	_FP_stricmp	_ANSI_ARGS_((char *, char *));
int 	TOOLEXPORT	_FP_strnicmp	_ANSI_ARGS_((char *, char *, int));
char *	TOOLEXPORT	_FP_strrstr	_ANSI_ARGS_((char *, char *));
char *	TOOLEXPORT	_FP_stoupper	_ANSI_ARGS_((char *));
char *	TOOLEXPORT	_FP_stolower	_ANSI_ARGS_((char *));
int 	TOOLEXPORT	_FP_strmatch	_ANSI_ARGS_((char *, char *));
char *	TOOLEXPORT	_FP_strstr	_ANSI_ARGS_((char *, char *));
char *	TOOLEXPORT	_FP_stristr	_ANSI_ARGS_((char *, char *));
char *	TOOLEXPORT	_FP_strirstr	_ANSI_ARGS_((char *, char *));
char *	TOOLEXPORT	_FP_strrchr	_ANSI_ARGS_((char *, int));
char *	TOOLEXPORT	_FP_fgets	_ANSI_ARGS_((char *, int, FILE *));
char *	TOOLEXPORT	_FP_strpbrk	_ANSI_ARGS_((char *, char *));
char *	TOOLEXPORT	_FP_strtok	_ANSI_ARGS_((char *, char *));
char *	TOOLEXPORT	_FP_cutdir	_ANSI_ARGS_((char *));
char *	TOOLEXPORT	_FP_strerror	_ANSI_ARGS_((int));
char *	TOOLEXPORT	_FP_tempnam	_ANSI_ARGS_((char *, char *));

#ifdef __cplusplus
}
#endif
#endif