Branch: Tag:

1998-02-27

1998-02-27 08:41:45 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>

lots of changes

Rev: src/acconfig.h:1.16
Rev: src/array.c:1.30
Rev: src/array.h:1.11
Rev: src/builtin_functions.c:1.74
Rev: src/compilation.h:1.7
Rev: src/configure.in:1.160
Rev: src/dynamic_load.c:1.24
Rev: src/interpret.c:1.69
Rev: src/interpret.h:1.19
Rev: src/language.yacc:1.61
Rev: src/las.c:1.53
Rev: src/main.c:1.42
Rev: src/modules/Makefile.in:1.15
Rev: src/modules/dynamic_module_makefile.in:1.31
Rev: src/modules/spider/dumudp.c:1.34
Rev: src/modules/static_module_makefile.in:1.25
Rev: src/modules/system/system.c:1.42
Rev: src/program.c:1.64
Rev: src/program.h:1.33

63:   struct array *low_allocate_array(INT32 size,INT32 extra_space);   void really_free_array(struct array *v);   void do_free_array(struct array *a); - struct array *resize_array(struct array *a, INT32 size); +    void array_index_no_free(struct svalue *s,struct array *v,INT32 index);   void array_index(struct svalue *s,struct array *v,INT32 index);   void simple_array_index_no_free(struct svalue *s,
72:   void array_set_index(struct array *v,INT32 index, struct svalue *s);   void simple_set_index(struct array *a,struct svalue *ind,struct svalue *s);   struct array *array_insert(struct array *v,struct svalue *s,INT32 index); + struct array *resize_array(struct array *a, INT32 size);   struct array *array_shrink(struct array *v,INT32 size);   struct array *array_remove(struct array *v,INT32 index);   INT32 array_search(struct array *v, struct svalue *s,INT32 start);
119:    int indent);   void describe_array(struct array *a,struct processing *p,int indent);   struct array *aggregate_array(INT32 args); + struct array *append_array(struct array *a, struct svalue *s);   struct array *explode(struct pike_string *str,    struct pike_string *del);   struct pike_string *implode(struct array *a,struct pike_string *del);