Files
looper/engine/src/wav.h
2026-05-17 19:02:03 +00:00

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