This file is indexed.

/usr/include/diet/iconv.h is in dietlibc-dev 0.33~cvs20120325-6.

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
#ifndef _ICONV_H
#define _ICONV_H

#include <sys/cdefs.h>
#include <sys/types.h>

__BEGIN_DECLS

/* Identifier for conversion method from one codeset to another.  */
typedef uint32_t iconv_t;

/* Allocate descriptor for code conversion from codeset FROMCODE to
   codeset TOCODE.  */
extern iconv_t iconv_open (const char *tocode, const char *fromcode) __THROW;

/* Convert at most *INBYTESLEFT bytes from *INBUF according to the
   code conversion algorithm specified by CD and place up to
   *OUTBYTESLEFT bytes in buffer at *OUTBUF.  */
extern size_t iconv (iconv_t cd, char** inbuf,
		     size_t* inbytesleft,
		     char** outbuf,
		     size_t* outbytesleft) __THROW;

/* Free resources allocated for descriptor CD for code conversion.  */
extern int iconv_close (iconv_t cd) __THROW;

__END_DECLS

#endif /* iconv.h */