summaryrefslogtreecommitdiff
path: root/dumb/dumb-kode54/src/it/load669.c
diff options
context:
space:
mode:
Diffstat (limited to 'dumb/dumb-kode54/src/it/load669.c')
-rw-r--r--dumb/dumb-kode54/src/it/load669.c42
1 files changed, 0 insertions, 42 deletions
diff --git a/dumb/dumb-kode54/src/it/load669.c b/dumb/dumb-kode54/src/it/load669.c
deleted file mode 100644
index e5a3fc3f..00000000
--- a/dumb/dumb-kode54/src/it/load669.c
+++ /dev/null
@@ -1,42 +0,0 @@
-/* _______ ____ __ ___ ___
- * \ _ \ \ / \ / \ \ / / ' ' '
- * | | \ \ | | || | \/ | . .
- * | | | | | | || ||\ /| |
- * | | | | | | || || \/ | | ' ' '
- * | | | | | | || || | | . .
- * | |_/ / \ \__// || | |
- * /_______/ynamic \____/niversal /__\ /____\usic /| . . ibliotheque
- * / \
- * / . \
- * loadmod.c - Code to read a 669 Composer module / / \ \
- * file, opening and closing it for | < / \_
- * you. | \/ /\ /
- * \_ / > /
- * By Chris Moeller | \ / /
- * | ' /
- * \__/
- */
-
-#include "dumb.h"
-#include "internal/it.h"
-
-
-
-/* dumb_load_669_quick(): loads a 669 file into a DUH struct, returning a
- * pointer to the DUH struct. When you have finished with it, you must
- * pass the pointer to unload_duh() so that the memory can be freed.
- */
-DUH *dumb_load_669_quick(const char *filename)
-{
- DUH *duh;
- DUMBFILE *f = dumbfile_open(filename);
-
- if (!f)
- return NULL;
-
- duh = dumb_read_669_quick(f);
-
- dumbfile_close(f);
-
- return duh;
-}