10 lines
215 B
C
10 lines
215 B
C
#ifndef WAV_H
|
|
#define WAV_H
|
|
|
|
#include <stddef.h>
|
|
|
|
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
|