www.usr.com/support/gpl/USR9113_release1.0.tar.gz
[bcm963xx.git] / userapps / opensource / ftpd / list.h
1 #ifndef __BFTPD_LIST_H
2 #define __BFTPD_LIST_H
3
4 #include <stdio.h>
5
6 struct bftpd_list_element {
7         void *data;
8         struct bftpd_list_element *next;
9 };
10
11 void bftpd_list_add(struct bftpd_list_element **list, void *data);
12 void bftpd_list_del(struct bftpd_list_element **list, int index);
13 int bftpd_list_count(struct bftpd_list_element *list);
14 void *bftpd_list_get(struct bftpd_list_element *list, int index);
15
16 #endif