/* 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. */ /* Packed array constructor for Ghostscript */ /* Requires ipacked.h, istack.h */ #ifndef iparray_INCLUDED # define iparray_INCLUDED #include "isdata.h" #include "imemory.h" /* * The only reason to put this in a separate header is that it requires * both ipacked.h and istack.h; putting it in either one would make it * depend on the other one. There must be a better way.... */ /* Procedures implemented in zpacked.c */ /* Make a packed array from the top N elements of a stack. */ int make_packed_array(ref *, ref_stack_t *, uint, gs_dual_memory_t *, client_name_t); #endif /* iparray_INCLUDED */