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/mbsetup/grlist.h
2015-11-05 18:49:27 -05:00

19 lines
274 B
C

#ifndef _GRLIST_H
#define _GRLIST_H
typedef struct _gr_list {
struct _gr_list *next;
char group[13];
int tagged;
} gr_list;
void tidy_grlist(gr_list **);
void fill_grlist(gr_list **, char *);
void sort_grlist(gr_list **);
int E_Group(gr_list **, char *);
#endif