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