/* _______ ____ __ ___ ___ * \ _ \ \ / \ / \ \ / / ' ' ' * | | \ \ | | || | \/ | . . * | | | | | | || ||\ /| | * | | | | | | || || \/ | | ' ' ' * | | | | | | || || | | . . * | |_/ / \ \__// || | | * /_______/ynamic \____/niversal /__\ /____\usic /| . . ibliotheque * / \ * / . \ * loadriff2.c - Code to read a RIFF module file / / \ \ * opening and closing it for you, | < / \_ * and do an initial run-through. | \/ /\ / * \_ / > / * By Chris Moeller. | \ / / * | ' / * \__/ */ #include "dumb.h" DUH *dumb_load_riff(const char *filename) { DUH *duh = dumb_load_riff_quick(filename); dumb_it_do_initial_runthrough(duh); return duh; }