Mercurial > geeqie
annotate src/uri_utils.h @ 1146:11b93d0791db
Rename check_for_home_path() to mkdir_if_not_exists().
author | zas_ |
---|---|
date | Sat, 15 Nov 2008 17:48:31 +0000 |
parents | 1646720364cf |
children | 8b89e3ff286b |
rev | line source |
---|---|
904 | 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 */ | |
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: */ |