9 lines
135 B
C
Executable file
9 lines
135 B
C
Executable file
|
|
#ifndef __WAV_H__
|
|
#define __WAV_H__
|
|
|
|
int wav_end(int data);
|
|
int wav_save(char *buf, unsigned int buf_size);
|
|
void wav_start();
|
|
|
|
#endif
|