1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#include <stdint.h>
#include <time.h>
#ifdef __OpenBSD__
#include <unistd.h>
#else
#define pledge(p1,p2) 0
#endif
#undef strlcat
size_t strlcat(char *, const char *, size_t);
#undef strlcpy
size_t strlcpy(char *, const char *, size_t);
/* feed info */
struct feed {
char *name; /* feed name */
unsigned long totalnew; /* amount of new items per feed */
unsigned long total; /* total items */
};
/* uri */
struct uri {
char proto[48];
char host[256];
char path[2048];
char port[6]; /* numeric port */
};
enum {
FieldUnixTimestamp = 0, FieldTitle, FieldLink, FieldContent,
FieldContentType, FieldId, FieldAuthor, FieldEnclosure, FieldLast
};
int absuri(char *, size_t, const char *, const char *);
size_t parseline(char *, char *[FieldLast]);
int parseuri(const char *, struct uri *, int);
void printutf8pad(FILE *, const char *, size_t, int);
int strtotime(const char *, time_t *);
void xmlencode(const char *, FILE *);
|