aboutsummaryrefslogtreecommitdiffstats
path: root/etisnoop/wavfile.h
diff options
context:
space:
mode:
Diffstat (limited to 'etisnoop/wavfile.h')
-rw-r--r--etisnoop/wavfile.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/etisnoop/wavfile.h b/etisnoop/wavfile.h
deleted file mode 100644
index f7ba379..0000000
--- a/etisnoop/wavfile.h
+++ /dev/null
@@ -1,18 +0,0 @@
-/*
-A simple sound library for CSE 20211 by Douglas Thain
-For course assignments, you should not change this file.
-For complete documentation, see:
-http://www.nd.edu/~dthain/courses/cse20211/fall2013/wavfile
-*/
-
-#ifndef WAVFILE_H
-#define WAVFILE_H
-
-#include <stdio.h>
-#include <inttypes.h>
-
-FILE * wavfile_open( const char *filename, int rate );
-void wavfile_write( FILE *file, short data[], int length );
-void wavfile_close( FILE * file );
-
-#endif