shithub: dumb

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

View raw version
/*  _______         ____    __         ___    ___
 * \    _  \       \    /  \  /       \   \  /   /       '   '  '
 *  |  | \  \       |  |    ||         |   \/   |         .      .
 *  |  |  |  |      |  |    ||         ||\  /|  |
 *  |  |  |  |      |  |    ||         || \/ |  |         '  '  '
 *  |  |  |  |      |  |    ||         ||    |  |         .      .
 *  |  |_/  /        \  \__//          ||    |  |
 * /_______/ynamic    \____/niversal  /__\  /____\usic   /|  .  . ibliotheque
 *                                                      /  \
 *                                                     / .  \
 * readokt2.c - Function to read an Oktalyzer         / / \  \
 *              module from an open file and do      | <  /   \_
 *              an initial run-through.              |  \/ /\   /
 *                                                    \_  /  > /
 *                                                      | \ / /
 * By Christopher Snowhill.                             |  ' /
 *                                                       \__/
 */

#include "dumb.h"

DUH *dumb_read_okt(DUMBFILE *f) {
    DUH *duh = dumb_read_okt_quick(f);
    dumb_it_do_initial_runthrough(duh);
    return duh;
}