This file is indexed.

/usr/include/kate/kate_config.h is in libkate-dev 0.4.1-7+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
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
/* Copyright (C) 2008 Vincent Penquerc'h.
   This file is part of the Kate codec library.
   Written by Vincent Penquerc'h.

   Use, distribution and reproduction of this library is governed
   by a BSD style source license included with this source in the
   file 'COPYING'. Please read these terms before distributing. */

#ifndef KATE_kate_config_h_GUARD
#define KATE_kate_config_h_GUARD

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#define __STDC_FORMAT_MACROS

#include <stddef.h>
#include <limits.h>
#include <sys/types.h>

#ifdef HAVE_INTTYPES_H
#include <inttypes.h>
#endif

#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif

#ifdef KATE_INTERNAL
#define kate_const
#else
#define kate_const const
#endif

#ifndef kate_malloc
#define kate_malloc malloc
#endif
#ifndef kate_realloc
#define kate_realloc realloc
#endif
#ifndef kate_free
#define kate_free free
#endif

#if defined HAVE_STDINT_H || defined HAVE_INTTYPES_H
typedef int32_t kate_int32_t;
#elif defined int32_t
typedef int32_t kate_int32_t;
#elif defined INT_MAX && INT_MAX==2147483647
typedef int kate_int32_t;
#elif defined SHRT_MAX && SHRT_MAX==2147483647
typedef short int kate_int32_t;
#elif defined LONG_MAX && LONG_MAX==2147483647
typedef long int kate_int32_t;
#elif defined LLONG_MAX && LLONG_MAX==2147483647
typedef long long int kate_int32_t;
#else
#error No 32 bit signed integer found
#endif

#if defined HAVE_STDINT_H || defined HAVE_INTTYPES_H
typedef uint32_t kate_uint32_t;
#elif defined uint32_t
typedef uint32_t kate_uint32_t;
#elif defined UINT_MAX && UINT_MAX==4294967295u
typedef unsigned int kate_uint32_t;
#elif defined USHRT_MAX && USHRT_MAX==4294967295u
typedef short unsigned int kate_uint32_t;
#elif defined ULONG_MAX && ULONG_MAX==4294967295ul
typedef long unsigned int kate_uint32_t;
#elif defined ULLONG_MAX && ULLONG_MAX==4294967295ull
typedef long long unsigned int kate_uint32_t;
#else
#error No 32 bit unsigned integer found
#endif

#if defined HAVE_STDINT_H || defined HAVE_INTTYPES_H
typedef int64_t kate_int64_t;
#elif defined int64_t
typedef int64_t kate_int64_t;
#elif defined INT_MAX && INT_MAX>2147483647
typedef int kate_int64_t;
#elif defined SHRT_MAX && SHRT_MAX>2147483647
typedef short int kate_int64_t;
#elif defined LONG_MAX && LONG_MAX>2147483647
typedef long int kate_int64_t;
#elif defined LLONG_MAX && LLONG_MAX>2147483647
typedef long long int kate_int64_t;
#elif defined LONG_LONG_MAX && LONG_LONG_MAX>2147483647
typedef long long int kate_int64_t;
#elif defined __GNUC__ && __GNUC__>=4 && defined __WORDSIZE && __WORDSIZE==64
/* this case matches glibc, check conservative GCC version just in case */
typedef long int kate_int64_t;
#elif defined __GNUC__ && __GNUC__>=4 && defined __WORDSIZE && __WORDSIZE==32
/* this case matches glibc, check conservative GCC version just in case */
typedef long long int kate_int64_t;
#else
#error No 64 bit signed integer found
#endif

#if defined HAVE_STDINT_H || defined HAVE_INTTYPES_H
typedef uint64_t kate_uint64_t;
#elif defined uint64_t
typedef uint64_t kate_uint64_t;
#elif defined UINT_MAX && UINT_MAX>4294967295u
typedef unsigned int kate_uint64_t;
#elif defined USHRT_MAX && USHRT_MAX>4294967295u
typedef unsigned short int kate_uint64_t;
#elif defined ULONG_MAX && ULONG_MAX>4294967295ul
typedef unsigned long int kate_uint64_t;
#elif defined ULLONG_MAX && ULLONG_MAX>4294967295ull
typedef unsigned long long int kate_uint64_t;
#elif defined ULONG_LONG_MAX && ULONG_LONG_MAX>4294967295ull
typedef unsigned long long int kate_uint64_t;
#elif defined __GNUC__ && __GNUC__>=4 && defined __WORDSIZE && __WORDSIZE==64
/* this case matches glibc, check conservative GCC version just in case */
typedef unsigned long int kate_uint64_t;
#elif defined __GNUC__ && __GNUC__>=4 && defined __WORDSIZE && __WORDSIZE==32
/* this case matches glibc, check conservative GCC version just in case */
typedef unsigned long long int kate_uint64_t;
#else
#error No 64 bit unsigned signed integer found
#endif

#if defined HAVE_STDINT_H || defined HAVE_INTTYPES_H
typedef uintptr_t kate_uintptr_t;
#elif defined uintptr_t
typedef uintptr_t kate_uintptr_t;
#else
typedef size_t kate_uintptr_t;
#endif

typedef float kate_float;

#endif