diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2016-03-29 10:24:36 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2016-03-29 10:24:36 +0200 |
commit | 5f541922afef40e674ea673c54d4416bab619fa2 (patch) | |
tree | c3c137b4c58ec1b12479a0a63d4dcfbd9dc27e51 | |
parent | e92d374581061255f6fdb70c68843bc077c33825 (diff) |
remove time field
-rw-r--r-- | util.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -7,7 +7,6 @@ size_t strlcat(char *, const char *, size_t); size_t strlcpy(char *, const char *, size_t); #define ISUTF8(c) (((c) & 0xc0) != 0x80) -#define LEN(x) (sizeof (x) / sizeof *(x)) /* feed info */ struct feed { @@ -27,7 +26,7 @@ struct uri { }; enum { - FieldUnixTimestamp = 0, FieldTimeFormatted, FieldTitle, + FieldUnixTimestamp = 0, FieldTitle, FieldLink, FieldContent, FieldContentType, FieldId, FieldAuthor, FieldFeedType, FieldLast }; |