Mercurial > geeqie
annotate src/uri_utils.h @ 1678:1e3bbaa772b9
cleanup: remove some disabled code
author | nadvornik |
---|---|
date | Sun, 28 Jun 2009 09:25:47 +0000 |
parents | 67b40740122e |
children | 956aab097ea7 |
rev | line source |
---|---|
904 | 1 /* |
2 * Geeqie | |
1284 | 3 * Copyright (C) 2008 - 2009 The Geeqie Team |
904 | 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 | |
1452 | 20 GList *uri_list_from_text(gchar *data, gboolean files_only); |
21 GList *uri_filelist_from_text(gchar *data, gboolean files_only); | |
22 gchar *uri_text_from_list(GList *list, gint *len, gboolean plain_text); | |
23 gchar *uri_text_from_filelist(GList *list, gint *len, gboolean plain_text); | |
904 | 24 |
25 #endif /* URI_UTILS_H */ | |
1055
1646720364cf
Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents:
904
diff
changeset
|
26 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |