mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +02:00
* libguile/hash.c (scm_i_string_hash): new function (scm_hasher): don't unpack string: use scm_i_string_hash * libguile/hash.h: new declaration for scm_i_string_hash * libguile/print.c (quote_keywordish_symbol): use symbol accessors (scm_i_print_symbol_name): new function (scm_print_symbol_name): call scm_i_print_symbol_name (iprin1): use scm_i_print_symbol_name to print symbols * libguile/print.h: new declaration for scm_i_print_symbol_name * libguile/symbols.c (lookup_interned_symbol): now takes scheme string instead of c string; callers changed (lookup_interned_symbol): add wide symbol support (scm_i_c_mem2symbol): removed (scm_i_mem2symbol): removed and replaced with scm_i_str2symbol (scm_i_str2symbol): new function (scm_i_mem2uninterned_symbol): removed and replaced with scm_i_str2uninterned_symbol (scm_i_str2uninterned_symbol): new function (scm_make_symbol, scm_string_to_symbol, scm_from_locale_symbol) (scm_from_locale_symboln): use scm_i_str2symbol * test-suite/tests/symbols.test: new tests
47 lines
1.5 KiB
C
47 lines
1.5 KiB
C
/* classes: h_files */
|
||
|
||
#ifndef SCM_HASH_H
|
||
#define SCM_HASH_H
|
||
|
||
/* Copyright (C) 1995,1996,2000, 2006, 2008 Free Software Foundation, Inc.
|
||
*
|
||
* This library is free software; you can redistribute it and/or
|
||
* modify it under the terms of the GNU Lesser General Public License
|
||
* as published by the Free Software Foundation; either version 3 of
|
||
* the License, or (at your option) any later version.
|
||
*
|
||
* This library is distributed in the hope that it will be useful, but
|
||
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
* Lesser General Public License for more details.
|
||
*
|
||
* You should have received a copy of the GNU Lesser General Public
|
||
* License along with this library; if not, write to the Free Software
|
||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||
* 02110-1301 USA
|
||
*/
|
||
|
||
|
||
|
||
#include "libguile/__scm.h"
|
||
|
||
|
||
|
||
SCM_API unsigned long scm_string_hash (const unsigned char *str, size_t len);
|
||
SCM_INTERNAL unsigned long scm_i_string_hash (SCM str);
|
||
SCM_API unsigned long scm_hasher (SCM obj, unsigned long n, size_t d);
|
||
SCM_API unsigned long scm_ihashq (SCM obj, unsigned long n);
|
||
SCM_API SCM scm_hashq (SCM obj, SCM n);
|
||
SCM_API unsigned long scm_ihashv (SCM obj, unsigned long n);
|
||
SCM_API SCM scm_hashv (SCM obj, SCM n);
|
||
SCM_API unsigned long scm_ihash (SCM obj, unsigned long n);
|
||
SCM_API SCM scm_hash (SCM obj, SCM n);
|
||
SCM_INTERNAL void scm_init_hash (void);
|
||
|
||
#endif /* SCM_HASH_H */
|
||
|
||
/*
|
||
Local Variables:
|
||
c-file-style: "gnu"
|
||
End:
|
||
*/
|