/* _______ ____ __ ___ ___ * \ _ \ \ / \ / \ \ / / ' ' ' * | | \ \ | | || | \/ | . . * | | | | | | || ||\ /| | * | | | | | | || || \/ | | ' ' ' * | | | | | | || || | | . . * | |_/ / \ \__// || | | * /_______/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; }