]> git.street.me.uk Git - andy/viking.git/blame - src/util.h
'extreme' debug mode (i.e. -Vd) to not remove downloaded temporary files.
[andy/viking.git] / src / util.h
CommitLineData
7d02a0b0
GB
1/*
2 * viking -- GPS Data and Topo Analyzer, Explorer, and Manager
3 *
a482007a 4 * Copyright (C) 2007-2009, Guilhem Bonnefille <guilhem.bonnefille@gmail.com>
6a280b85 5 * Copyright (C) 2014, Rob Norris <rw_norris@hotmail.com>
7d02a0b0 6 * Based on:
a482007a 7 * Copyright (C) 2003-2007, Leandro A. F. Pereira <leandro@linuxmag.com.br>
7d02a0b0
GB
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 */
24
25#ifndef _VIKING_UTIL_H
26#define _VIKING_UTIL_H
27
28#include <glib.h>
7d02a0b0 29
722b5481
RN
30G_BEGIN_DECLS
31
ba4a5e11
GB
32gchar *uri_escape(gchar *str);
33
70434be3
GB
34GList * str_array_to_glist(gchar* data[]);
35
0da89d90 36gboolean split_string_from_file_on_equals ( const gchar *buf, gchar **key, gchar **val );
9106934d 37
44871dd1
RN
38void util_add_to_deletion_list ( const gchar* filename );
39void util_remove_all_in_deletion_list ( void );
40
6a280b85
RN
41gchar *util_str_remove_chars(gchar *string, const gchar *chars);
42
43/** Returns @c TRUE if @a ptr is @c NULL or @c *ptr is @c FALSE. */
44#define EMPTY(ptr) \
45 (!(ptr) || !*(ptr))
46
47/** Iterates all the nodes in @a list.
48 * @param node should be a (@c GList*).
49 * @param list @c GList to traverse. */
50#define foreach_list(node, list) \
51 for (node = list; node != NULL; node = node->next)
52
53/** Iterates all the nodes in @a list.
54 * @param node should be a (@c GSList*).
55 * @param list @c GSList to traverse. */
56#define foreach_slist(node, list) \
57 foreach_list(node, list)
58
59/** Iterates through each character in @a string.
60 * @param char_ptr Pointer to character.
61 * @param string String to traverse.
62 * @warning Doesn't include null terminating character. */
63#define foreach_str(char_ptr, string) \
64 for (char_ptr = string; *char_ptr; char_ptr++)
65
81bf47ee
RN
66int util_remove ( const gchar *filename );
67
722b5481
RN
68G_END_DECLS
69
7d02a0b0 70#endif