This file is indexed.

/usr/include/genometools/core/types_api.h is in libgenometools0-dev 1.5.3-2.

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
/*
  Copyright (c) 2013 Gordon Gremme <gordon@gremme.org>
  Copyright (c) 2007 Stefan Kurtz <kurtz@zbh.uni-hamburg.de>
  Copyright (c) 2007 Center for Bioinformatics, University of Hamburg

  Permission to use, copy, modify, and distribute this software for any
  purpose with or without fee is hereby granted, provided that the above
  copyright notice and this permission notice appear in all copies.

  THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/

#ifndef TYPES_API_H
#define TYPES_API_H

#include <limits.h>

/* Define the conversion string for '%lld' in platform independent fashion. */
#ifndef _WIN32
#define GT_LLD "%lld"
#else
#define GT_LLD "%I64d"
#endif

/* Define the conversion string for '%llu' in platform independent fashion. */
#ifndef _WIN32
#define GT_LLU "%llu"
#else
#define GT_LLU "%I64u"
#endif

/* Define the conversion string for 'ld' in platform independent fashion. Note
   that splint can not handle concatenated strings in format strings, something
   like "%03.2""ld" will break. A bug was filed for this. */
#ifndef _WIN64
#define GT_WDS "ld"
#define GT_WD "%ld"
#else
#define GT_WDS "I64d"
#define GT_WD "%I64d"
#endif

/* Define the conversion string for 'lu' in platform independent fashion. Note
   that splint can not handle concatenated strings in format strings, something
   like "%03.2""ld" will break. A bug was filed for this. */
#ifndef _WIN64
#define GT_WUS "lu"
#define GT_WU "%lu"
#else
#define GT_WUS "I64u"
#define GT_WU "%I64u"
#endif

/* Define the conversion string for '%zu' in platform independent fashion. */
#if !defined(_WIN32)
#define GT_ZU "%zu"
#elif defined(_WIN64)
#define GT_ZU "%I64u"
#else
#define GT_ZU "%u"
#endif

/* Define GtUword as an unsigned integer with the machine word size (4 byte on
   32-bit systems and 8 byte on 64-bit systems). */
#ifdef _WIN64
typedef unsigned long long GtUword;
#define GT_UWORD_MAX ULLONG_MAX
#else
typedef unsigned long GtUword;
#define GT_UWORD_MAX ULONG_MAX
#endif

/* Define GtWord as a signed integer with the machine word size (4 byte on
   32-bit systems and 8 byte on 64-bit systems). */
#ifdef _WIN64
typedef long long GtWord;
#define GT_WORD_MAX LLONG_MAX
#define GT_WORD_MIN LLONG_MIN
#else
typedef long GtWord;
#define GT_WORD_MAX LONG_MAX
#define GT_WORD_MIN LONG_MIN
#endif

typedef long long          GtInt64;
typedef unsigned long long GtUint64;

typedef unsigned char GtUchar;

typedef GtUword GtUlong;

typedef struct
{
  GtUlong a, b;
} GtUlongPair;

#endif