blob: ec1c243965b1f83e3f77ebed8789f6156383983d (
plain)
1
2
3
4
5
6
|
#ifndef UNITY_WAV_FILE_UTILITY_H_
#define UNITY_WAV_FILE_UTILITY_H_
bool WriteWaveFile (char const* filename, int channels, int samplebits, int freq, void* data, int samples);
#endif // UNITY_WAV_FILE_UTILITY_H_
|