/* Copyright (C) 2001-2023 Artifex Software, Inc. All Rights Reserved. This software is provided AS-IS with no warranty, either express or implied. This software is distributed under license and may not be copied, modified or distributed except as expressly authorized under the terms of the license contained in the file LICENSE in this distribution. Refer to licensing information at http://www.artifex.com or contact Artifex Software, Inc., 39 Mesa Street, Suite 108A, San Francisco, CA 94129, USA, for further information. */ /* Internal interface to string garbage collector */ #ifndef igcstr_INCLUDED # define igcstr_INCLUDED #include "gxalloc.h" /* Exported by ilocate.c for igcstr.c */ clump_t *gc_locate(const void *, gc_state_t *); /* Exported by igcstr.c for igc.c */ void gc_strings_set_marks(clump_t *, bool); bool gc_string_mark(const byte *, uint, bool, gc_state_t *); void gc_strings_clear_reloc(clump_t *); void gc_strings_set_reloc(clump_t *); void gc_strings_compact(clump_t *, const gs_memory_t *); string_proc_reloc(igc_reloc_string); const_string_proc_reloc(igc_reloc_const_string); param_string_proc_reloc(igc_reloc_param_string); #endif /* igcstr_INCLUDED */