12#define NB_TEST_ELEM 15
14void print_list_info(
LIST* list) {
19int nstrcmp(
const void* a,
const void* b) {
34 LIST* list = new_generic_list(LIST_LIMIT);
44 n_log(
LOG_NOTICE,
"list list: adding %d element in list element (%d) list, empty the list at the end", NB_TEST_ELEM, LIST_LIMIT);
45 list = new_generic_list(LIST_LIMIT);
46 for (
int it = 0; it < NB_TEST_ELEM; it++) {
47 nstrprintf(nstr,
"Nombre aleatoire : %d", rand() % 1000);
49 int func = rand() % 4;
72 n_log(
LOG_ERR,
"should never happen: no func %d !", func);
76 print_list_info(list);
79 n_log(
LOG_NOTICE,
"Emptying the list and setting nb_max_item to unlimit");
83 for (
int it = 0; it < NB_TEST_ELEM; it++) {
84 nstrprintf(nstr,
"Nombre aleatoire : %d", rand() % 1000);
86 int func = 2 + rand() % 1;
109 n_log(
LOG_ERR,
"should never happen: no func %d !", func);
113 print_list_info(list);
118 n_log(
LOG_INFO,
"Listnode: %p item: %s", node, nodestr->data);
#define __n_assert(__ptr, __ret)
macro to assert things
size_t nb_max_items
maximum number of item in the list.
size_t nb_items
number of item currently in the list
int list_empty(LIST *list)
Empty a LIST list of pointers.
int list_push(LIST *list, void *ptr, void(*destructor)(void *ptr))
Add a pointer to the end of the list.
#define list_foreach(__ITEM_, __LIST_)
ForEach macro helper.
int list_unshift(LIST *list, void *ptr, void(*destructor)(void *ptr))
Add a pointer at the start of the list.
int list_destroy(LIST **list)
Empty and Free a list container.
int list_unshift_sorted(LIST *list, void *ptr, int(*comparator)(const void *a, const void *b), void(*destructor)(void *ptr))
Add a pointer sorted in the list , starting by the start of the list.
int list_push_sorted(LIST *list, void *ptr, int(*comparator)(const void *a, const void *b), void(*destructor)(void *ptr))
Add a pointer sorted in the list , starting by the end of the list.
Structure of a generic LIST container.
#define n_log(__LEVEL__,...)
Logging function wrapper to get line and func.
#define LOG_DEBUG
debug-level messages
#define LOG_ERR
error conditions
void set_log_level(const int log_level)
Set the global log level value ( static int LOG_LEVEL )
#define LOG_NOTICE
normal but significant condition
#define LOG_INFO
informational
void free_nstr_ptr(void *ptr)
Free a N_STR pointer structure.
#define free_nstr(__ptr)
free a N_STR structure and set the pointer to NULL
#define nstrprintf(__nstr_var, __format,...)
Macro to quickly allocate and sprintf to N_STR.
A box including a string and his lenght.
List structures and definitions.
N_STR and string function declaration.