18 lines
606 B
C
18 lines
606 B
C
/* This software is licensed by the MIT License, see LICENSE file */
|
|
/* Copyright © 2022 Gregory Lirent */
|
|
|
|
#include "../../../include/extra/dict.h"
|
|
|
|
#include "../../include/random.h"
|
|
#include "../../include/test.h"
|
|
#include "../../include/time.h"
|
|
|
|
void dict_push_random(dict_t* x, bool silent, unsigned int hpos);
|
|
void dict_remove_random(dict_t* x, bool silent, unsigned int hpos);
|
|
|
|
void dict_print(dict_t* x, const char* prefix, unsigned int hpos);
|
|
void dict_info(const dict_t* x, unsigned int hpos);
|
|
|
|
void visual_push(dict_t* x, size_t n);
|
|
void visual_remove(dict_t* x);
|