fishtalk/include/fishtalk_int.h

13 lines
245 B
C
Raw Normal View History

2026-05-23 02:26:17 +09:00
#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);