24 lines
893 B
C
24 lines
893 B
C
/* This software is licensed by the MIT License, see LICENSE file */
|
|
/* Copyright © 2022 Gregory Lirent */
|
|
|
|
#include "../../../include/extra/string.h"
|
|
#include "../../../include/extra/array.h"
|
|
#include "../../../include/extra/list.h"
|
|
#include "../../../include/extra/set.h"
|
|
#include "../../../include/extra/map.h"
|
|
#include "../../../include/extra/dict.h"
|
|
|
|
#include "../../include/random.h"
|
|
#include "../../include/test.h"
|
|
#include "../../include/time.h"
|
|
|
|
extern value_t random_container(bool embd);
|
|
extern value_t 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);
|