25 lines
537 B
C
25 lines
537 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_ATOM_H__
|
|
#define __FEED_ATOM_H__
|
|
|
|
#include "feed-parse.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
FeedParser*
|
|
atom_init_parser (void);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __FEED_ATOM_H__ */
|
|
|