libcdsb/tests/src/set/main.c

14 lines
401 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"
vtype_set* vset_duplicate(const vtype_set* x) { return 0; }
int vset_compare(const vtype_set* s0, const vtype_set* s1) { return random_int8(); }
void vset_free(vtype_set* x) {}
int main(int argc, char** argv) {
test_init(argc, argv);
}