pike.git/
src/
array.h
Branch:
Tag:
Non-build tags
All tags
No tags
2007-12-17
2007-12-17 18:02:59 by Henrik Grubbström (Grubba) <grubba@grubba.org>
b1a658fdc64190aa4490b1565ffc4f0072e3d339 (
4
lines) (+
3
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
Added o_append_array().
Rev: src/array.h:1.70
2:
|| 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:
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);