diff libaudacious/vfs_stdio.c @ 811:86ca43d8a845 trunk

[svn] - implement vfs_feof() and vfs_ftell() and update the scrobbler plugin to reflect that, by external contributor: Leonardo Boshell <leonardop -at- gentoo.org>
author nenolod
date Thu, 09 Mar 2006 19:03:27 -0800
parents adee87ebe853
children a17888ed66a8
line wrap: on
line diff
--- a/libaudacious/vfs_stdio.c	Thu Mar 09 09:55:56 2006 -0800
+++ b/libaudacious/vfs_stdio.c	Thu Mar 09 19:03:27 2006 -0800
@@ -107,6 +107,12 @@
 }
 
 gboolean
+vfs_feof(VFSFile * file)
+{
+    return (gboolean)feof(file->handle);
+}
+
+gboolean
 vfs_file_test(const gchar * path, GFileTest test)
 {
     return g_file_test(path, test);