This file is indexed.

/usr/include/udport/strvec.h is in libxgks-dev 2.6.1+dfsg.2-3ubuntu1.

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
/*
 * (C) Copyright 1991 UCAR/Unidata
 * 
 * Permission to use, copy, modify, and distribute this software and its
 * documentation for any purpose without fee is hereby granted, provided that
 * the above copyright notice appear in all copies, that both that copyright
 * notice and this permission notice appear in supporting documentation, and
 * that the name of UCAR/Unidata not be used in advertising or publicity
 * pertaining to distribution of the software without specific, written prior
 * permission.  UCAR makes no representations about the suitability of this
 * software for any purpose. It is provided "as is" without express or
 * implied warranty.  It is provided with no support and without obligation
 * on the part of UCAR or Unidata, to assist in its use, correction,
 * modification, or enhancement.
 * 
 * $Id: strvec.h,v 1.1 2000/08/07 23:15:04 emmerson Exp $
 */

/*
 * This file describes the public portion of the string-vector abstraction.
 */

#ifndef	STRINGVEC_H_INCLUDED
#   define	STRVEC_H_INCLUDED

#   ifndef UD_FORTRAN_SOURCE

	/*
	 * Opaque, string-vector datatype:
	 */
	struct Strvec;
	typedef struct Strvec	Strvec;

	UD_EXTERN_FUNC(Strvec *svnew,    (size_t initial_number));
	UD_EXTERN_FUNC(Strvec *svadd,    (Strvec *sv, const char *s));
	UD_EXTERN_FUNC(int     svnumber, (const Strvec *sv));
	UD_EXTERN_FUNC(char  **svvector, (const Strvec *sv));
	UD_EXTERN_FUNC(char   *svstring, (const Strvec *sv, int i));
	UD_EXTERN_FUNC(Strvec *svfree,   (Strvec *sv));

#   endif	/* UD_FORTRAN_SOURCE was not defined above */

#endif	/* STRVEC_H_INCLUDED was not defined above */