comparison src/uri_utils.h @ 904:1698baa37871

Move uri_*() functions to separate files: uri_utils.[ch]
author zas_
date Sun, 20 Jul 2008 15:16:05 +0000
parents
children 1646720364cf
comparison
equal deleted inserted replaced
903:c93823609f15 904:1698baa37871
1 /*
2 * Geeqie
3 * Copyright (C) 2008 The Geeqie Team
4 *
5 * Author: John Ellis, Vladimir Nadvornik, Laurent Monin
6 *
7 * This software is released under the GNU General Public License (GNU GPL).
8 * Please read the included file COPYING for more information.
9 * This software comes with no warranty of any kind, use at your own risk!
10 */
11
12 #ifndef URI_UTILS_H
13 #define URI_UTILS_H
14
15 /* dnd data parsers (uris) */
16
17 gchar *uri_text_escape(const gchar *text);
18 void uri_text_decode(gchar *text);
19
20 GList *uri_list_from_text(gchar *data, gint files_only);
21 GList *uri_filelist_from_text(gchar *data, gint files_only);
22 gchar *uri_text_from_list(GList *list, gint *len, gint plain_text);
23 gchar *uri_text_from_filelist(GList *list, gint *len, gint plain_text);
24
25 #endif /* URI_UTILS_H */