Blame gnulib/tests/localename-table.c

Packit Service a2ae7a
/* Table that maps a locale object to the names of the locale categories.
Packit Service a2ae7a
   Copyright (C) 2018-2019 Free Software Foundation, Inc.
Packit Service a2ae7a
Packit Service a2ae7a
   This program is free software: you can redistribute it and/or modify
Packit Service a2ae7a
   it under the terms of the GNU General Public License as published by
Packit Service a2ae7a
   the Free Software Foundation; either version 3 of the License, or
Packit Service a2ae7a
   (at your option) any later version.
Packit Service a2ae7a
Packit Service a2ae7a
   This program is distributed in the hope that it will be useful,
Packit Service a2ae7a
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service a2ae7a
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service a2ae7a
   GNU General Public License for more details.
Packit Service a2ae7a
Packit Service a2ae7a
   You should have received a copy of the GNU General Public License
Packit Service a2ae7a
   along with this program.  If not, see <https://www.gnu.org/licenses/>.  */
Packit Service a2ae7a
Packit Service a2ae7a
/* Written by Bruno Haible <bruno@clisp.org>, 2018.  */
Packit Service a2ae7a
Packit Service a2ae7a
#include <config.h>
Packit Service a2ae7a
Packit Service a2ae7a
#if HAVE_WORKING_USELOCALE && HAVE_NAMELESS_LOCALES
Packit Service a2ae7a
Packit Service a2ae7a
/* Specification.  */
Packit Service a2ae7a
#include "localename-table.h"
Packit Service a2ae7a
Packit Service a2ae7a
#include <stdint.h>
Packit Service a2ae7a
Packit Service a2ae7a
/* A hash function for pointers.  */
Packit Service a2ae7a
size_t _GL_ATTRIBUTE_CONST
Packit Service a2ae7a
locale_hash_function (locale_t x)
Packit Service a2ae7a
{
Packit Service a2ae7a
  uintptr_t p = (uintptr_t) x;
Packit Service a2ae7a
  size_t h = ((p % 4177) << 12) + ((p % 79) << 6) + (p % 61);
Packit Service a2ae7a
  return h;
Packit Service a2ae7a
}
Packit Service a2ae7a
Packit Service a2ae7a
struct locale_hash_node * locale_hash_table[LOCALE_HASH_TABLE_SIZE]
Packit Service a2ae7a
  /* = { NULL, ..., NULL } */;
Packit Service a2ae7a
Packit Service a2ae7a
gl_rwlock_define_initialized(, locale_lock)
Packit Service a2ae7a
Packit Service a2ae7a
#else
Packit Service a2ae7a
Packit Service a2ae7a
/* This declaration is solely to ensure that after preprocessing
Packit Service a2ae7a
   this file is never empty.  */
Packit Service a2ae7a
typedef int dummy;
Packit Service a2ae7a
Packit Service a2ae7a
#endif