Change the array's memory handling

This commit is contained in:
2022-06-03 11:58:02 +03:00
parent a0a7299fe0
commit 2e3dc282c7
6 changed files with 47 additions and 59 deletions
+1
View File
@@ -22,6 +22,7 @@ extern void array_reverse(vtype_array* x) LIBCDSB_nt__ LIBCDSB_nn1__;
#define in_array(x, value) (array_indexof(x, value) >= 0)
extern void* array_at (const vtype_array* s, ssize_t index);
extern ssize_t array_get(vtype_array* s, vtype_value* x, ssize_t index, _Bool cut);