9 lines
201 B
C
9 lines
201 B
C
|
#ifndef AUDIOFILE_H
|
||
|
#define AUDIOFILE_H
|
||
|
|
||
|
#include <sndfile.h>
|
||
|
|
||
|
SNDFILE *audiofile_read(const char *path, SF_INFO *sfinfo);
|
||
|
SNDFILE *audiofile_open_for_write(const char *path, SF_INFO *og_info);
|
||
|
|
||
|
#endif
|