libcdsb/tests/src/set/main.c

16 lines
359 B
C
Raw Normal View History

2022-06-02 19:23:01 +00:00
/* This software is licensed by the MIT License, see LICENSE file */
/* Copyright © 2022 Gregory Lirent */
#include "plug.h"
int main(int argc, char** argv) {
test_init(argc, argv);
2022-06-06 19:08:10 +00:00
2022-06-10 18:17:35 +00:00
set_t x;
2022-06-07 18:24:17 +00:00
2022-06-10 18:17:35 +00:00
vset_init(&x, random_uint8()%VTYPE_LDOUBLE + 1);
visual_push(&x, random_uint8()%17 + 16);
visual_remove(&x);
2022-06-02 19:23:01 +00:00
}