2021-08-02 11:41:15 -04:00
|
|
|
typedef struct itemStruct itemStruct;
|
|
|
|
struct itemStruct {
|
|
|
|
char *title;
|
|
|
|
char *link;
|
|
|
|
char *description;
|
|
|
|
itemStruct *next;
|
|
|
|
};
|
|
|
|
|
|
|
|
void freeItem(itemStruct *item);
|
|
|
|
|
|
|
|
int readDoc(
|
2021-08-06 14:32:04 -04:00
|
|
|
char *content,
|
|
|
|
const char *feedName,
|
|
|
|
void itemAction(itemStruct *, char const *chanTitle));
|