Code cleanup.

This commit is contained in:
Steven Smith
2015-01-25 19:04:27 -08:00
parent e60b6b8f23
commit 9b7c6b8c0d
17 changed files with 443 additions and 414 deletions
+9 -2
View File
@@ -2,8 +2,15 @@
#define __CWAV_H__
#include "../types.h"
#include "../wav.h"
u8* build_cwav(WAV wav, u32* size);
typedef struct {
u32 channels;
u32 sampleRate;
u32 bitsPerSample;
u32 dataSize;
u8* data;
} CWAV;
u8* cwav_build(CWAV wav, u32* size);
#endif