26 lines
533 B
C
26 lines
533 B
C
|
/*
|
||
|
Copyright (C) 2009 Dale Whittaker <dayul@users.sf.net>
|
||
|
|
||
|
This library is free software; you can redistribute it and/or
|
||
|
modify it under the terms of the GNU Lesser General Public
|
||
|
License as published by the Free Software Foundation; either
|
||
|
version 2.1 of the License, or (at your option) any later version.
|
||
|
|
||
|
See the file COPYING for the full license text.
|
||
|
*/
|
||
|
|
||
|
#ifndef __FEED_RSS_H__
|
||
|
#define __FEED_RSS_H__
|
||
|
|
||
|
#include "feed-parse.h"
|
||
|
|
||
|
G_BEGIN_DECLS
|
||
|
|
||
|
FeedParser*
|
||
|
rss_init_parser (void);
|
||
|
|
||
|
G_END_DECLS
|
||
|
|
||
|
#endif /* __FEED_RSS_H__ */
|
||
|
|