14 lines
408 B
C
14 lines
408 B
C
/* This software is licensed by the MIT License, see LICENSE file */
|
|
/* Copyright © 2022 Gregory Lirent */
|
|
|
|
#include "plug.h"
|
|
|
|
vtype_list* list_duplicate(const vtype_list* x) { return 0; }
|
|
int list_compare(const vtype_list* s0, const vtype_list* s1) { return random_int8(); }
|
|
void list_free(vtype_list* x) {}
|
|
|
|
|
|
int main(int argc, char** argv) {
|
|
test_init(argc, argv);
|
|
}
|