sfeed

simple feed reader - forked from git.codemadness.org/sfeed
git clone git://src.gearsix.net/sfeed
Log | Files | Refs | Atom | README | LICENSE

commit ed133b0000e8b8cdabf038bf40e457fac2cc428c
parent b9904cc297144ceadfc3dea11120ad3968423153
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Mon, 20 May 2013 19:28:20 +0200

add common header

Signed-off-by: Hiltjo Posthuma <hiltjo@codemadness.org>

Diffstat:
Acommon.h | 18++++++++++++++++++
1 file changed, 18 insertions(+), 0 deletions(-)

diff --git a/common.h b/common.h @@ -0,0 +1,18 @@ +/* Feed info. */ +struct feed { + char *name; /* feed name */ + unsigned long totalnew; /* amount of new items per feed */ + unsigned long total; /* total items */ + struct feed *next; /* linked list */ +}; + +enum { FieldUnixTimestamp = 0, FieldTimeFormatted, FieldTitle, FieldLink, + FieldContent, FieldContentType, FieldId, FieldAuthor, FieldFeedType, + FieldFeedName, FieldFeedUrl, FieldBaseSiteUrl, FieldLast }; + +char * afgets(char **p, size_t *size, FILE *fp); +void feedsfree(struct feed *f); +unsigned int parseline(char **line, size_t *size, char **fields, unsigned int maxfields, int separator, FILE *fp); +void printfeednameid(const char *s, FILE *fp); +void printhtmlencoded(const char *s, FILE *fp); +void printlink(const char *link, const char *baseurl, FILE *fp);