13 lines
245 B
C
13 lines
245 B
C
#include <fishtalk_phon.h>
|
|
|
|
#define FT_IS_SKIPPABLE(x) ((x) == ' ' || (x) == '\t')
|
|
|
|
struct ft_handle {
|
|
FT_SAMPLE_PROC sample;
|
|
int rate;
|
|
|
|
char buffer[512 * 1024];
|
|
long buffer_size;
|
|
};
|
|
|
|
void ft_cmd_queue(FT_HANDLE handle, const char* buffer);
|