shithub: dumb

ref: b8a5d88fa56fb7432298be19059a88fc2a4e7750
dir: /src/it/readamf2.c/

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

#include "dumb.h"

DUH *dumb_read_amf(DUMBFILE *f) {
    DUH *duh = dumb_read_amf_quick(f);
    dumb_it_do_initial_runthrough(duh);
    return duh;
}