libcdsb/tests/src/map/main.c

14 lines
398 B
C
Raw Normal View History

2022-06-02 22:23:01 +03:00
/* 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);
}