A simple RSS feed downloader that saves items in a Maildir
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
191 B

#ifndef PARSE_H_INC
#define PARSE_H_INC
struct rss_item {
char title[256];
char link[256];
char date[32];
long epochsec;
char descfn[16];
FILE *desc;
};
int parse_item(void);
#endif