diff src/util.c @ 11135:f2755f58a7da

[gaim-migrate @ 13196] Straighten out some comments and get rid of a warning in gtkutils.c committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Wed, 20 Jul 2005 23:10:33 +0000
parents a4611130e3eb
children 096020ae09a9
line wrap: on
line diff
--- a/src/util.c	Wed Jul 20 22:46:41 2005 +0000
+++ b/src/util.c	Wed Jul 20 23:10:33 2005 +0000
@@ -3170,8 +3170,10 @@
 	return ((c - domain) > 3 ? TRUE : FALSE);
 }
 
-/** Stolen from gnome_uri_list_extract_uris **/
-GList* gaim_uri_list_extract_uris (const gchar* uri_list) {
+/* Stolen from gnome_uri_list_extract_uris */
+GList *
+gaim_uri_list_extract_uris(const gchar *uri_list)
+{
 	const gchar *p, *q;
 	gchar *retval;
 	GList *result = NULL;
@@ -3215,13 +3217,15 @@
 }
 
 
-/** Stolen from gaim_uri_list_extract_filenames **/
-GList* gaim_uri_list_extract_filenames (const gchar* uri_list) {
+/* Stolen from gnome_uri_list_extract_filenames */
+GList *
+gaim_uri_list_extract_filenames(const gchar *uri_list)
+{
 	GList *tmp_list, *node, *result;
 
 	g_return_val_if_fail (uri_list != NULL, NULL);
 
-	result = gaim_uri_list_extract_uris (uri_list);
+	result = gaim_uri_list_extract_uris(uri_list);
 
 	tmp_list = result;
 	while (tmp_list) {