shithub: dumb

ref: 56bb910855a084975e52183b90de333dd33eb6f2
dir: /src/it/readstm2.c/

View raw version
/*  _______         ____    __         ___    ___
 * \    _  \       \    /  \  /       \   \  /   /       '   '  '
 *  |  | \  \       |  |    ||         |   \/   |         .      .
 *  |  |  |  |      |  |    ||         ||\  /|  |
 *  |  |  |  |      |  |    ||         || \/ |  |         '  '  '
 *  |  |  |  |      |  |    ||         ||    |  |         .      .
 *  |  |_/  /        \  \__//          ||    |  |
 * /_______/ynamic    \____/niversal  /__\  /____\usic   /|  .  . ibliotheque
 *                                                      /  \
 *                                                     / .  \
 * readstm2.c - Function to read a ScreamTracker 2    / / \  \
 *              module from an open file and do an   | <  /   \_
 *              initial run-through.                 |  \/ /\   /
 *                                                    \_  /  > /
 * By Chris Moeller.                                    | \ / /
 *                                                      |  ' /
 *                                                       \__/
 */

#include "dumb.h"

DUH *dumb_read_stm(DUMBFILE *f) {
    DUH *duh = dumb_read_stm_quick(f);
    dumb_it_do_initial_runthrough(duh);
    return duh;
}