Cog/Frameworks/Dumb/dumb/src/it/readstm2.c

27 lines
1.2 KiB
C
Raw Normal View History

2013-09-28 00:24:23 -03:00
/* _______ ____ __ ___ ___
* \ _ \ \ / \ / \ \ / / ' ' '
* | | \ \ | | || | \/ | . .
* | | | | | | || ||\ /| |
* | | | | | | || || \/ | | ' ' '
* | | | | | | || || | | . .
* | |_/ / \ \__// || | |
* /_______/ynamic \____/niversal /__\ /____\usic /| . . ibliotheque
* / \
* / . \
* readstm2.c - Function to read a ScreamTracker 2 / / \ \
* module from an open file and do an | < / \_
* initial run-through. | \/ /\ /
* \_ / > /
2017-10-08 22:48:02 -03:00
* By Christopher Snowhill. | \ / /
2013-09-28 00:24:23 -03:00
* | ' /
* \__/
*/
#include "dumb.h"
2017-09-26 20:11:54 -03:00
DUH *dumb_read_stm(DUMBFILE *f) {
DUH *duh = dumb_read_stm_quick(f);
dumb_it_do_initial_runthrough(duh);
return duh;
2013-09-28 00:24:23 -03:00
}