This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
deb-mbse/mbfido/grlist.h
2001-08-17 05:46:24 +00:00

20 lines
369 B
C

#ifndef _GRLIST_H_
#define _GRLIST_H
typedef struct _gr_list { /* Announce array */
struct _gr_list *next;
char group[13]; /* Group name */
char echo[21]; /* Fileecho name */
int count; /* Number of new files */
} gr_list;
void tidy_grlist(gr_list **);
void fill_grlist(gr_list **, char *, char *);
void sort_grlist(gr_list **);
#endif