ref: 4a1caf253849c19c1197d1da45c9eefd1210c611
dir: /rssfill.h/
typedef struct Feed Feed;
struct Feed {
char *title;
char *link;
char *desc;
char *date;
char *cont;
int s;
Feed *n;
Feed *p;
};
enum {
NONE = 0x00,
ITEM,
TITLE,
LINK,
DESC,
CONTENT,
DATE,
END,
};