list_node_t *array[10] = {NULL};
*array[0] = (list_node_t*) malloc(sizeof(list_node_t));
list_node_t **array[10] = {NULL};