libcdsb/tests/src/global/plug.h
2023-03-26 12:08:37 +03:00

24 lines
871 B
C

/* This software is licensed by the MIT License, see LICENSE file */
/* Copyright © 2022 Gregory Lirent */
#include "../../../include/string.h"
#include "../../../include/array.h"
#include "../../../include/list.h"
#include "../../../include/set.h"
#include "../../../include/map.h"
#include "../../../include/dict.h"
#include "../../include/random.h"
#include "../../include/test.h"
#include "../../include/time.h"
extern vtype_variable random_container(bool embd);
extern vtype_variable real_random_value(bool embd);
extern void array_info(arr_t* x, unsigned int hpos);
extern void list_info (list_t* x, unsigned int hpos);
extern void dict_info(const dict_t* x, unsigned int hpos);
extern void map_info(const map_t* x, unsigned int hpos);
extern void vset_info(const set_t* x, unsigned int hpos);
extern void string_info(str_t* x);