From 927cc35bb845a48151951c3284ba9d3ec59d8130 Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Fri, 21 Nov 2014 20:04:47 +0100 Subject: Add missing wavfile.[ch] --- wavfile.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 wavfile.h (limited to 'wavfile.h') diff --git a/wavfile.h b/wavfile.h new file mode 100644 index 0000000..f7ba379 --- /dev/null +++ b/wavfile.h @@ -0,0 +1,18 @@ +/* +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 +#include + +FILE * wavfile_open( const char *filename, int rate ); +void wavfile_write( FILE *file, short data[], int length ); +void wavfile_close( FILE * file ); + +#endif -- cgit v1.2.3