"%s: \n" /* dirname */
"%s: \n" /* basename */
"%s: \n" /* score */
- "%s: \n" /* attributes bitnmap */
+ "%s: \n" /* attributes bitmap */
"%s: \n" /* attributes txt */
"%s: \n" /* hash */
"%s: \n" /* image id */
* Licensed under the GPL v2. For licencing details see COPYING.
*/
-/** \file oggdec.c paraslash's ogg vorbis decoder */
+/** \file oggdec.c Paraslash's ogg vorbis decoder. */
#include "para.h"
}
/*
- * cb_seek -- custom data seeking function
+ * Custom data seeking function.
+ *
* Since we want the data source to be treated as unseekable at all
* times, the provided seek callback always returns -1 (failure).
*/
.seek_func = cb_seek,
.close_func = cb_close,
/*
- * The tell function need not be provided if
- * the data IO abstraction is not seekable
+ * The tell function need not be provided if the data IO abstraction is
+ * not seekable
*/
.tell_func = NULL
};