#ifndef MOSSROSE_H #define MOSSROSE_H #include struct mossrose_sound_t { float *left; float *right; size_t len; }; int mossrose_init(double sample_rate, int n_channels); int mossrose_terminate(); int mossrose_play(struct mossrose_sound_t *sound, int channel); #endif