shithub: dumb

ref: affae6de24bf5bb8c5d9f49aa5e9c970c5f2a36b
dir: /src/it/loadriff2.c/

View raw version
/*  _______         ____    __         ___    ___
 * \    _  \       \    /  \  /       \   \  /   /       '   '  '
 *  |  | \  \       |  |    ||         |   \/   |         .      .
 *  |  |  |  |      |  |    ||         ||\  /|  |
 *  |  |  |  |      |  |    ||         || \/ |  |         '  '  '
 *  |  |  |  |      |  |    ||         ||    |  |         .      .
 *  |  |_/  /        \  \__//          ||    |  |
 * /_______/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 Christopher Snowhill.                             | \ / /
 *                                                      |  ' /
 *                                                       \__/
 */

#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;
}