From 4809f3c042a99a639542b1e6cd22657871113260 Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Fri, 2 Sep 2016 17:43:32 +0200 Subject: Move all sources to src/ --- src/wavfile.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/wavfile.h (limited to 'src/wavfile.h') diff --git a/src/wavfile.h b/src/wavfile.h new file mode 100644 index 0000000..09e8371 --- /dev/null +++ b/src/wavfile.h @@ -0,0 +1,17 @@ +/* +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 + +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