Update used array symbols
This commit is contained in:
parent
2499edb4be
commit
f6033d0c4f
@ -18,8 +18,8 @@ int main(int argc, char** argv) {
|
||||
array_print(&x, "source");
|
||||
array_print(&y, "cutted");
|
||||
|
||||
array_remove_by_index(&x, -1);
|
||||
array_remove_by_index(&y, -1);
|
||||
array_remove(&x, -1);
|
||||
array_remove(&y, -1);
|
||||
|
||||
array_print(&x, "source (last removed)");
|
||||
array_print(&y, "cutted (last removed)");
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
#include <string.h>
|
||||
#include "../../../include/extra/vtype.h"
|
||||
#include "../../../include/array.h"
|
||||
#include "../../../include/extra/array.h"
|
||||
|
||||
#include "../../include/random.h"
|
||||
#include "../../include/test.h"
|
||||
|
Loading…
Reference in New Issue
Block a user