fixed code style
[prss.git] / src / ttrss_model.h
index b502010..81f75c2 100644 (file)
@@ -28,6 +28,7 @@ struct headline {
        char *excerpt;
        char *content;
        int unread;
+       time_t date;
 };
 
 struct feed {
@@ -49,5 +50,6 @@ struct headline *headline_new(int id, const char *url, const char *title);
 
 struct feed **feeds_add(struct feed **list, struct feed *f);
 struct headline *feed_get_headline(struct feed *feed, int id);
+struct headline *feeds_get_headline(struct feed **feeds, int id);
 
 #endif