Nilorea Library list api test.
#define LIST_LIMIT 10
#define NB_TEST_ELEM 15
}
int nstrcmp(
const void* a,
const void* b) {
return 1;
return -1;
}
nstrprintf(nstr,
"Nombre aleatoire : %d", rand() % 1000);
if (nstr) {
int func = rand() % 4;
switch (func) {
case 0:
break;
case 1:
break;
case 2:
break;
case 3:
break;
default:
break;
}
nstr = NULL;
}
}
nstrprintf(nstr,
"Nombre aleatoire : %d", rand() % 1000);
if (nstr) {
int func = 2 + rand() % 1;
switch (func) {
case 0:
break;
case 1:
break;
case 2:
break;
case 3:
break;
default:
break;
}
nstr = NULL;
}
}
}
exit(0);
}
void print_list_info(LIST *list)
int nstrcmp(const void *a, const void *b)
#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.
LIST * new_generic_list(size_t max_items)
Initialiaze a generic list container to max_items pointers.
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.