1#ifndef __BFTPD_DIRLIST_H
2#define __BFTPD_DIRLIST_H
3
4struct hidegroup {
5    int data;
6    struct hidegroup *next;
7};
8
9void hidegroups_init();
10void hidegroups_end();
11void bftpd_stat(char *name, FILE *client);
12void dirlist(char *name, FILE *client, char verbose);
13
14#endif
15