From b1a658fdc64190aa4490b1565ffc4f0072e3d339 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?= <grubba@grubba.org> Date: Mon, 17 Dec 2007 19:02:59 +0100 Subject: [PATCH] Added o_append_array(). Rev: src/array.h:1.70 --- src/array.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/array.h b/src/array.h index 5368e8c2d9..049e5a76d2 100644 --- a/src/array.h +++ b/src/array.h @@ -2,7 +2,7 @@ || 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: array.h,v 1.69 2006/07/05 20:49:17 mast Exp $ +|| $Id: array.h,v 1.70 2007/12/17 18:02:59 grubba Exp $ */ #ifndef ARRAY_H @@ -116,6 +116,7 @@ PMOD_EXPORT void simple_array_index_no_free(struct svalue *s, PMOD_EXPORT void array_free_index(struct array *v,INT32 ind); PMOD_EXPORT void simple_set_index(struct array *a,struct svalue *ind,struct svalue *s); PMOD_EXPORT struct array *array_insert(struct array *v,struct svalue *s,INT32 ind); +void o_append_array(INT32 args); PMOD_EXPORT struct array *resize_array(struct array *a, INT32 size); PMOD_EXPORT struct array *array_shrink(struct array *v, ptrdiff_t size); PMOD_EXPORT struct array *array_remove(struct array *v,INT32 ind); -- GitLab