This file is indexed.

/usr/include/diet/wctype.h is in dietlibc-dev 0.33~cvs20120325-6+deb8u1.

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

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

typedef const int32_t* wctrans_t;

int iswalnum(wint_t) __THROW __attribute__ ((__const__));
int iswalpha(wint_t) __THROW __attribute__ ((__const__));
int iswblank(wint_t) __THROW __attribute__ ((__const__));
int iswcntrl(wint_t) __THROW __attribute__ ((__const__));
int iswdigit(wint_t) __THROW __attribute__ ((__const__));
int iswgraph(wint_t) __THROW __attribute__ ((__const__));
int iswlower(wint_t) __THROW __attribute__ ((__const__));
int iswprint(wint_t) __THROW __attribute__ ((__const__));
int iswpunct(wint_t) __THROW __attribute__ ((__const__));
int iswspace(wint_t) __THROW __attribute__ ((__const__));
int iswupper(wint_t) __THROW __attribute__ ((__const__));
int iswxdigit(wint_t) __THROW __attribute__ ((__const__));
int iswctype(wint_t, wctype_t) __THROW __attribute__ ((__const__));
wint_t towctrans(wint_t, wctrans_t) __THROW;
wint_t towlower(wint_t) __THROW;
wint_t towupper(wint_t) __THROW;
wctrans_t wctrans(const char *) __THROW;
wctype_t wctype(const char *) __THROW;

#endif