New RSSyl replacing old one.
[claws.git] / src / plugins / rssyl / strutils.h
1 #ifndef __STRUTILS_H
2 #define __STRUTILS_H
3
4 gchar *rssyl_strreplace(gchar *source, gchar *pattern,
5                 gchar *replacement);
6
7 gchar *rssyl_replace_html_stuff(gchar *text,
8                 gboolean symbols, gboolean tags);
9
10 gchar *rssyl_format_string(gchar *str, gboolean replace_html,
11                 gboolean strip_nl);
12
13 gchar **strsplit_no_copy(gchar *str, char delimiter);
14
15 void strip_html(gchar *str);
16
17 gchar *my_normalize_url(const gchar *url);
18
19 #endif /* __STRUTILS_H */