Rework of let command. Added support for slices as described in feature #69 and fixed several crashes and issues described in bugs #443, #444, #446, #447, and #448.

This commit is contained in:
Jim Monte
2020-03-15 08:51:01 +01:00
committed by Holger Vogt
parent 7990a82f02
commit 0c741bbde2
3 changed files with 678 additions and 189 deletions
+1 -1
View File
@@ -75,7 +75,7 @@ struct dveclist {
bool f_own_vector;
};
struct dvec *dvec_alloc(const char *name,
struct dvec *dvec_alloc(/* NOT CONST -- assigned to const */ char *name,
int type, short flags, int length, void *storage);
void dvec_realloc(struct dvec *v, int length, void *storage);
void dvec_extend(struct dvec *v, int length);