ref: 539434b1006da7b48ba134305c07b6bc1856fe06
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,
};