pike.git
/
src
/
mapping.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/mapping.h:1:
/* || This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information.
-
|| $Id: mapping.h,v 1.
44
2002/10/
11
01
:
39
:
33
nilsson
Exp $
+
|| $Id: mapping.h,v 1.
45
2002/10/
20
23
:
42
:
54
marcus
Exp $
*/ #ifndef MAPPING_H #define MAPPING_H #include "las.h" #include "block_alloc_h.h" /* Compatible with PIKE_WEAK_INDICES and PIKE_WEAK_VALUES. */ #define MAPPING_WEAK_INDICES 2
pike.git/src/mapping.h:91:
PMOD_PROTO void really_free_mapping(struct mapping *md); /* Prototypes begin here */ BLOCK_ALLOC(mapping, 511)
-
static void check_mapping_type_fields(struct mapping *m);
+
PMOD_EXPORT struct mapping *debug_allocate_mapping(int size); PMOD_EXPORT void really_free_mapping_data(struct mapping_data *md); PMOD_EXPORT void do_free_mapping(struct mapping *m); struct mapping_data *copy_mapping_data(struct mapping_data *md); PMOD_EXPORT void mapping_fix_type_field(struct mapping *m); PMOD_EXPORT void mapping_set_flags(struct mapping *m, int flags); PMOD_EXPORT void low_mapping_insert(struct mapping *m, struct svalue *key, struct svalue *val, int overwrite);