]> git.street.me.uk Git - andy/viking.git/blobdiff - src/util.h
Add kdtree C code version 0.5.6 from https://code.google.com/p/kdtree/
[andy/viking.git] / src / util.h
index 8bb12e75f609efdf0ba1f979f26d12dba20a2c31..0c99384dc956571e7d0cafe38602ef04964a0ac9 100644 (file)
@@ -1,9 +1,9 @@
 /*
  * viking -- GPS Data and Topo Analyzer, Explorer, and Manager
  *
- * Copyright (C) 2007 Guilhem Bonnefille <guilhem.bonnefille@gmail.com>
+ * Copyright (C) 2007-2009, Guilhem Bonnefille <guilhem.bonnefille@gmail.com>
  * Based on:
- * Copyright (C) 2003-2007 Leandro A. F. Pereira <leandro@linuxmag.com.br>
+ * Copyright (C) 2003-2007, Leandro A. F. Pereira <leandro@linuxmag.com.br>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
 #include <glib.h>
 #include <gtk/gtk.h>
 
+G_BEGIN_DECLS
+
 void open_url(GtkWindow *parent, const gchar * url);
 void new_email(GtkWindow *parent, const gchar * address);
 
 gchar *uri_escape(gchar *str);
 
-#endif
+GList * str_array_to_glist(gchar* data[]);
+
+gboolean split_string_from_file_on_equals ( const gchar *buf, gchar **key, gchar **val );
 
+void util_add_to_deletion_list ( const gchar* filename );
+void util_remove_all_in_deletion_list ( void );
+
+G_END_DECLS
+
+#endif