mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-19 19:45:15 +00:00
21 lines
380 B
C
21 lines
380 B
C
/* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*- */
|
|
|
|
#ifndef RSS_H_
|
|
#define RSS_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void rss_scan_arg(struct text_object *, const char *);
|
|
void rss_print_info(struct text_object *, char *, int);
|
|
void rss_free_obj_info(struct text_object *);
|
|
|
|
void rss_free_info(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /*RSS_H_*/
|