defsubst
[bpt/guile.git] / libguile / symbols.h
CommitLineData
0f2d19dd
JB
1/* classes: h_files */
2
729dbac3
DH
3#ifndef SCM_SYMBOLS_H
4#define SCM_SYMBOLS_H
dee01b01 5
dc7da0be 6/* Copyright (C) 1995,1996,1997,1998,2000,2001, 2003, 2004, 2006, 2008, 2010, 2011 Free Software Foundation, Inc.
dee01b01 7 *
73be1d9e 8 * This library is free software; you can redistribute it and/or
53befeb7
NJ
9 * modify it under the terms of the GNU Lesser General Public License
10 * as published by the Free Software Foundation; either version 3 of
11 * the License, or (at your option) any later version.
dee01b01 12 *
53befeb7
NJ
13 * This library is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
dee01b01 17 *
73be1d9e
MV
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
53befeb7
NJ
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 * 02110-1301 USA
73be1d9e 22 */
d3a6bc94 23
0f2d19dd
JB
24\f
25
b4309c3c 26#include "libguile/__scm.h"
0f2d19dd
JB
27\f
28
dc7da0be 29#define scm_is_symbol(x) (SCM_HAS_TYP7 (x, scm_tc7_symbol))
3ee86942 30#define scm_i_symbol_hash(x) ((unsigned long) SCM_CELL_WORD_2 (x))
6869328b
MV
31#define scm_i_symbol_is_interned(x) \
32 (!(SCM_CELL_WORD_0 (x) & SCM_I_F_SYMBOL_UNINTERNED))
33
34#define SCM_I_F_SYMBOL_UNINTERNED 0x100
0f2d19dd 35
0f2d19dd 36\f
0f2d19dd 37
8a4ed2dd
AW
38/* Older spellings; don't use in new code.
39 */
40#define SCM_SYMBOLP(x) (scm_is_symbol (x))
41#define SCM_SYMBOL_FUNC(x) (scm_symbol_fref (x))
42#define SCM_SET_SYMBOL_FUNC(x,f) (scm_symbol_fset_x (x, f))
43#define SCM_SYMBOL_PROPS(x) (scm_symbol_pref (x))
44#define SCM_SET_SYMBOL_PROPS(x,p) (scm_symbol_pset_x (x, p))
45#define SCM_SYMBOL_HASH(x) (scm_i_symbol_hash (x))
46#define SCM_SYMBOL_INTERNED_P(x) (scm_i_symbol_is_interned (x))
47
48\f
49
a4c91488 50#ifdef GUILE_DEBUG
33b001fd 51SCM_API SCM scm_sys_symbols (void);
a4c91488 52#endif
23ade5e7 53
33b001fd 54SCM_API SCM scm_symbol_p (SCM x);
a63cdd61
MV
55SCM_API SCM scm_symbol_interned_p (SCM sym);
56SCM_API SCM scm_make_symbol (SCM name);
33b001fd
MV
57SCM_API SCM scm_symbol_to_string (SCM s);
58SCM_API SCM scm_string_to_symbol (SCM s);
1206efbe 59SCM_API SCM scm_string_ci_to_symbol (SCM s);
86d31dfe 60
c2176c05
BT
61SCM_API SCM scm_make_obarray (void);
62SCM_API SCM scm_intern (SCM s, SCM obarray);
63SCM_API SCM scm_unintern (SCM s, SCM obarray);
64SCM_API SCM scm_find_symbol (SCM s, SCM obarray);
65SCM_API SCM scm_obarray_for_each (SCM proc, SCM obarray);
66
33b001fd
MV
67SCM_API SCM scm_symbol_fref (SCM s);
68SCM_API SCM scm_symbol_pref (SCM s);
69SCM_API SCM scm_symbol_fset_x (SCM s, SCM val);
70SCM_API SCM scm_symbol_pset_x (SCM s, SCM val);
86d31dfe 71
33b001fd
MV
72SCM_API SCM scm_symbol_hash (SCM s);
73SCM_API SCM scm_gensym (SCM prefix);
86d31dfe 74
ad5cbc47
AW
75/* Use locale encoding for user input, user output, or interacting with
76 the C library. Use latin-1 for ASCII, and for literals in source
77 code. Use UTF-8 for interaction with modern libraries which deal in
78 UTF-8. Otherwise use scm_to_stringn or scm_from_stringn, and
79 convert. */
80
3ee86942
MV
81SCM_API SCM scm_from_locale_symbol (const char *str);
82SCM_API SCM scm_from_locale_symboln (const char *str, size_t len);
fd0a5bbc
HWN
83SCM_API SCM scm_take_locale_symbol (char *sym);
84SCM_API SCM scm_take_locale_symboln (char *sym, size_t len);
3ee86942 85
ad5cbc47
AW
86SCM_API SCM scm_from_latin1_symbol (const char *str);
87SCM_API SCM scm_from_latin1_symboln (const char *str, size_t len);
88SCM_API SCM scm_take_latin1_symbol (char *sym);
89SCM_API SCM scm_take_latin1_symboln (char *sym, size_t len);
90
91SCM_API SCM scm_from_utf8_symbol (const char *str);
92SCM_API SCM scm_from_utf8_symboln (const char *str, size_t len);
93SCM_API SCM scm_take_utf8_symbol (char *sym);
94SCM_API SCM scm_take_utf8_symboln (char *sym, size_t len);
95
3ee86942
MV
96/* internal functions. */
97
102dbb6f 98SCM_INTERNAL unsigned long scm_i_hash_symbol (SCM obj, unsigned long n,
7914b2b0 99 void *closure);
3ee86942 100
102dbb6f
LC
101SCM_INTERNAL void scm_symbols_prehistory (void);
102SCM_INTERNAL void scm_init_symbols (void);
0f2d19dd 103
729dbac3 104#endif /* SCM_SYMBOLS_H */
89e00824
ML
105
106/*
107 Local Variables:
108 c-file-style: "gnu"
109 End:
110*/