#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <pthread.h>
Go to the source code of this file.
Data Structures | |
struct | static_list |
Typedefs | |
typedef static_list | static_list |
Functions | |
int | static_list_init (static_list **new_static_list, size_t elements) |
void | static_list_destroy (static_list *list_to_destroy) |
int | static_list_insert (static_list *new_static_list, void *pntr_to_add) |
int | static_list_remove (static_list *new_static_list, void *pntr_to_del) |
void * | static_list_rand_search (static_list *new_static_list, int(generic_search)()) |
|
|
|
|
|
|
|
|
|
|
|
|