This file is indexed.

/usr/include/mapserver/maphash.h is in libmapserver-dev 7.0.7-1build2.

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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/******************************************************************************
 * $Id$
 *
 * Project:  MapServer
 * Purpose:  Declarations for the hashTableObj and related stuff.
 * Author:   Sean Gillies, sgillies@frii.com
 *
 ******************************************************************************
 * Copyright (c) 1996-2005 Regents of the University of Minnesota.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies of this Software or works derived from this Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 * DEALINGS IN THE SOFTWARE.
 ****************************************************************************/

#ifndef MAPHASH__H
#define MAPHASH__H

#ifdef __cplusplus
extern "C" {
#endif

#if defined(_WIN32) && !defined(__CYGWIN__)
#  define MS_DLL_EXPORT     __declspec(dllexport)
#else
#define  MS_DLL_EXPORT
#endif

#define MS_HASHSIZE 41

  /* =========================================================================
   * Structs
   * ========================================================================= */

#ifndef SWIG
  struct hashObj {
    struct hashObj *next;  /* pointer to next item */
    char           *key;   /* string key that is hashed */
    char           *data;  /* string stored in this item */
  };
#endif /*SWIG*/

  typedef struct {
#ifndef SWIG
    struct hashObj **items;  /* the hash table */
#endif
#ifdef SWIG
    %immutable;
#endif /*SWIG*/
    int              numitems;  /* number of items */
#ifdef SWIG
    %mutable;
#endif /*SWIG*/
  } hashTableObj;

  /* =========================================================================
   * Functions
   * ========================================================================= */

#ifndef SWIG
  /* msCreateHashTable - create a hash table
   * ARGS:
   *     None
   * RETURNS:
   *     New hash table
   */
  MS_DLL_EXPORT hashTableObj *msCreateHashTable( void );

  /* For use in mapfile.c with hashTableObj structure members */
  MS_DLL_EXPORT int initHashTable( hashTableObj *table );

  /* msFreeHashTable - free allocated memory
   * ARGS:
   *     table - target hash table
   * RETURNS:
   *     None
   */
  MS_DLL_EXPORT void msFreeHashTable( hashTableObj *table );

  /* Free only the items for hashTableObj structure members (metadata, &c) */
  MS_DLL_EXPORT void msFreeHashItems( hashTableObj *table );

  /* msInsertHashTable - insert new item
   * ARGS:
   *     table - the target hash table
   *     key   - key string for new item
   *     value - data string for new item
   * RETURNS:
   *     pointer to the new item or NULL
   * EXCEPTIONS:
   *     raise MS_HASHERR on failure
   */
  MS_DLL_EXPORT struct hashObj *msInsertHashTable( hashTableObj *table,
      const char *key,
      const char *value );

  /* msLookupHashTable - get the value of an item by its key
   * ARGS:
   *     table - the target hash table
   *     key   - key string of item
   * RETURNS:
   *     string value of item
   */
  MS_DLL_EXPORT char *msLookupHashTable( hashTableObj *table, const char *key);

  /* msRemoveHashTable - remove item from table at key
   * ARGS:
   *     table - target hash table
   *     key   - key string
   * RETURNS:
   *     MS_SUCCESS or MS_FAILURE
   */
  MS_DLL_EXPORT int msRemoveHashTable( hashTableObj *table, const char *key);

  /* msFirstKeyFromHashTable - get key of first item
   * ARGS:
   *     table - target hash table
   * RETURNS:
   *     first key as a string
   */
  MS_DLL_EXPORT const char *msFirstKeyFromHashTable( hashTableObj *table );

  /* msNextKeyFromHashTable - get next key
   * ARGS:
   *     table - target hash table
   *     prevkey - the previous key
   * RETURNS:
   *     the key of the item of following prevkey as a string
   */
  MS_DLL_EXPORT const char *msNextKeyFromHashTable( hashTableObj *table,
      const char *prevkey );

  /* msHashIsEmpty - get next key
   * ARGS:
   *     table - target hash table
   * RETURNS:
   *     MS_TRUE if the table is empty and MS_FALSE if the table has items
   */

  MS_DLL_EXPORT int msHashIsEmpty( hashTableObj* table );

#endif /*SWIG*/

#ifdef __cplusplus
}
#endif

#endif /* MAPHASH__H */