(gtk) try to iron out the remaining "add torrent" issues reported by wereHamster and Lacrocivous

This commit is contained in:
Charles Kerr
2008-03-18 01:22:11 +00:00
parent ac21d3280c
commit 0437c5f33e
13 changed files with 207 additions and 337 deletions

View File

@@ -59,24 +59,24 @@ rfc822date (guint64 epoch_msec);
gboolean
mkdir_p(const char *name, mode_t mode);
/* create a copy of a GList of strings, this dups the actual strings too */
GList *
dupstrlist( GList * list );
/* create a copy of a GSList of strings, this dups the actual strings too */
GSList *
dupstrlist( GSList * list );
/* joins a GList of strings into one string using an optional separator */
/* joins a GSList of strings into one string using an optional separator */
char *
joinstrlist(GList *list, char *sep);
joinstrlist(GSList *list, char *sep);
/* free a GList of strings */
/* free a GSList of strings */
void
freestrlist(GList *list);
freestrlist(GSList *list);
/* decodes a string that has been urlencoded */
char *
decode_uri( const char * uri );
/* return a list of cleaned-up paths, with invalid directories removed */
GList *
GSList *
checkfilenames( int argc, char ** argv );
/* retrieve the global download directory */