#ifndef WAV_H #define WAV_H #include int wav_read(const char *path, float **buffer, unsigned *frames); int wav_write(const char *path, const float *data, unsigned frames, unsigned sample_rate); #endif