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