2022-12-11 04:13:23 +01:00
|
|
|
#ifndef PARSE_H_INC
|
|
|
|
#define PARSE_H_INC
|
|
|
|
|
2022-12-11 02:26:38 +01:00
|
|
|
struct rss_item {
|
2022-12-11 04:13:23 +01:00
|
|
|
char title[256];
|
|
|
|
char link[256];
|
|
|
|
char date[32];
|
2022-12-11 03:40:36 +01:00
|
|
|
long epochsec;
|
2022-12-11 04:13:23 +01:00
|
|
|
char descfn[16];
|
|
|
|
FILE *desc;
|
2022-12-11 02:26:38 +01:00
|
|
|
};
|
2022-12-11 04:13:23 +01:00
|
|
|
|
|
|
|
int parse_item(void);
|
|
|
|
|
|
|
|
#endif
|